annotate composer.json @ 0:493bcb69166c

added public content
author Daniel Wolff
date Tue, 09 Feb 2016 20:54:02 +0100
parents
children
rev   line source
Daniel@0 1 {
Daniel@0 2 "name": "symfony/framework-standard-edition",
Daniel@0 3 "license": "MIT",
Daniel@0 4 "type": "project",
Daniel@0 5 "description": "The \"Symfony Standard Edition\" distribution",
Daniel@0 6 "autoload": {
Daniel@0 7 "psr-0": {
Daniel@0 8 "": "src/",
Daniel@0 9 "SymfonyStandard": "app/"
Daniel@0 10 }
Daniel@0 11 },
Daniel@0 12 "require": {
Daniel@0 13 "php": ">=5.3.3",
Daniel@0 14 "symfony/symfony": "2.5.*",
Daniel@0 15 "doctrine/orm": "~2.2,>=2.2.3",
Daniel@0 16 "doctrine/doctrine-bundle": "~1.2",
Daniel@0 17 "twig/extensions": "~1.0",
Daniel@0 18 "symfony/assetic-bundle": "~2.3",
Daniel@0 19 "symfony/monolog-bundle": "~2.4",
Daniel@0 20 "sensio/distribution-bundle": "~3.0",
Daniel@0 21 "sensio/framework-extra-bundle": "~3.0",
Daniel@0 22 "incenteev/composer-parameter-handler": "~2.0",
Daniel@0 23 "kachkaev/counters-bundle": "dev-master",
Daniel@0 24 "kachkaev/assets-version-bundle": "~1.0",
Daniel@0 25 "kriswallsmith/assetic": "v1.2.1"
Daniel@0 26 },
Daniel@0 27 "require-dev": {
Daniel@0 28 "sensio/generator-bundle": "~2.3"
Daniel@0 29 },
Daniel@0 30 "scripts": {
Daniel@0 31 "post-install-cmd": [
Daniel@0 32 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
Daniel@0 33 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
Daniel@0 34 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
Daniel@0 35 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
Daniel@0 36 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
Daniel@0 37 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles"
Daniel@0 38 ],
Daniel@0 39 "post-update-cmd": [
Daniel@0 40 "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
Daniel@0 41 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
Daniel@0 42 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
Daniel@0 43 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
Daniel@0 44 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
Daniel@0 45 "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::removeSymfonyStandardFiles"
Daniel@0 46 ]
Daniel@0 47 },
Daniel@0 48 "config": {
Daniel@0 49 "bin-dir": "bin"
Daniel@0 50 },
Daniel@0 51 "extra": {
Daniel@0 52 "symfony-app-dir": "app",
Daniel@0 53 "symfony-web-dir": "./$/",
Daniel@0 54 "incenteev-parameters": {
Daniel@0 55 "file": "app/config/parameters.yml"
Daniel@0 56 },
Daniel@0 57 "branch-alias": {
Daniel@0 58 "dev-master": "2.5-dev"
Daniel@0 59 }
Daniel@0 60 }
Daniel@0 61 }