comparison composer.json @ 0:493bcb69166c

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