-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathcomposer.json
76 lines (76 loc) · 3.05 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "symfony-cmf/standard-edition",
"license": "MIT",
"type": "project",
"description": "The \"Symfony CMF Standard Edition\" distribution",
"authors": [
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/symfony-cmf-standard/contributors"
}
],
"autoload": {
"psr-0": { "": "src/" }
},
"minimum-stability": "stable",
"require": {
"php": ">=5.3.3",
"symfony/symfony": "2.3.*",
"twig/extensions": "1.0.*",
"symfony/monolog-bundle": "2.3.*",
"symfony/assetic-bundle": "2.3.*",
"sensio/distribution-bundle": "2.3.*",
"symfony-cmf/symfony-cmf": "1.0.*",
"symfony-cmf/simple-cms-bundle": "1.0.*",
"symfony-cmf/create-bundle": "1.0.*",
"jackalope/jackalope-doctrine-dbal": "1.0.*",
"doctrine/doctrine-bundle": "1.2.*",
"doctrine/data-fixtures": "1.0.*",
"lunetics/locale-bundle": "2.2.*",
"liip/doctrine-cache-bundle": "1.0.*",
"incenteev/composer-parameter-handler": "~2.0",
"liip/imagine-bundle": "~0.12",
"wjzijderveld/check-bundles": "1.0.*@dev"
},
"require-dev": {
"liip/functional-test-bundle": "1.0.*"
},
"scripts": {
"post-install-cmd": [
"WillemJan\\CheckBundles\\Composer\\CheckBundles::postPackageUpdate",
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreateAndCkeditor",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
],
"post-update-cmd": [
"WillemJan\\CheckBundles\\Composer\\CheckBundles::postPackageUpdate",
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreateAndCkeditor",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"checkbundles-ignore": [
"Liip\\FunctionalTestBundle\\LiipFunctionalTestBundle",
"Sensio\\Bundle\\DistributionBundle\\SensioDistributionBundle",
"Sonata\\BlockBundle\\SonataBlockBundle",
"Sonata\\CoreBundle\\SonataCoreBundle",
"Symfony\\Cmf\\Bundle\\BlockBundle\\CmfBlockBundle"
],
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}