forked from prestaconcept/PrestaCMSSandboxBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
107 lines (107 loc) · 3.58 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name" : "presta/cms-sandbox",
"description" : "Sandbox for Presta CMS",
"keywords" : [
"symfony2",
"bundle",
"cms",
"symfony-cmf",
"prestaconcept"
],
"autoload" : {
"psr-0" : {
"" : "src/"
}
},
"minimum-stability" : "dev",
"repositories" : [{
"type" : "package",
"package" : {
"name" : "ckeditor/ckeditor",
"version" : "4.2.2",
"source" : {
"url" : "https://github.com/ckeditor/ckeditor-releases.git",
"type" : "git",
"reference" : "tags/4.2.2/standard"
}
}
}
],
"require" : {
"php" : ">=5.3.3",
"symfony/symfony" : "2.3.*",
"doctrine/orm" : ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle" : "1.2.*",
"twig/extensions" : "1.0.*",
"twig/twig" : "@stable",
"symfony/assetic-bundle" : "2.3.*",
"symfony/swiftmailer-bundle" : "2.3.*",
"symfony/monolog-bundle" : "2.3.*",
"sensio/distribution-bundle" : "2.3.*",
"sensio/framework-extra-bundle" : "2.3.*",
"sensio/generator-bundle" : "2.3.*",
"incenteev/composer-parameter-handler" : "~2.1",
"sonata-project/admin-bundle" : "2.2.*@dev",
"sonata-project/media-bundle" : "2.2.*@dev",
"sonata-project/doctrine-orm-admin-bundle" : "2.2.*@dev",
"sonata-project/easy-extends-bundle" : "2.1.*@dev",
"doctrine/doctrine-fixtures-bundle" : "v2.2.0",
"presta/presta-cms" : "1.0.0",
"presta/sonata-navigation-bundle" : "1.0.*",
"presta/cms-sitemap-bridge-bundle" : "1.0.*",
"presta/sonata-admin-extended-bundle" : "1.0.*",
"presta/cms-ckeditor-bundle" : "1.0.*",
"presta/cms-faq-bundle" : "1.0.*",
"presta/cms-user-bundle" : "1.0.*",
"doctrine/phpcr-bundle" : "1.0.0",
"doctrine/phpcr-odm" : "1.0.0",
"symfony-cmf/core-bundle" : "1.0.0",
"symfony-cmf/content-bundle" : "1.0.0",
"symfony-cmf/menu-bundle" : "1.0.0",
"symfony-cmf/block-bundle" : "1.0.0",
"symfony-cmf/routing-bundle" : "1.1.0",
"symfony-cmf/tree-browser-bundle" : "1.0.0",
"jackalope/jackalope-doctrine-dbal" : "1.0.0",
"presta/cms-social-bundle" : "1.0.*",
"friendsofsymfony/message-bundle" : "dev-master",
"jul/location-bundle" : "dev-master",
"krs/mail-bundle" : "dev-master"
},
"require-dev" : {
"phpunit/phpunit" : "3.7.*@stable",
"symfony-cmf/testing" : "1.0.*",
"behat/behat" : "~2.4@stable",
"behat/symfony2-extension" : "~1.0@stable",
"behat/mink-extension" : "~1.1@stable",
"behat/mink-browserkit-driver" : "~1.1@stable",
"behat/mink-zombie-driver" : "~1.1@stable"
},
"scripts" : {
"post-install-cmd" : [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Presta\\ComposerPublicBundle\\Composer\\ScriptHandler::ComposerPublic"
],
"post-update-cmd" : [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Presta\\ComposerPublicBundle\\Composer\\ScriptHandler::ComposerPublic"
]
},
"extra" : {
"symfony-app-dir" : "app",
"symfony-web-dir" : "web",
"incenteev-parameters" : {
"file" : "app/config/parameters.yml"
},
"branch-alias" : {
"dev-master" : "2.3.x-dev"
}
}
}