forked from symfony-cmf/cmf-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
86 lines (86 loc) · 3.5 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
{
"name": "symfony-cmf/sandbox",
"description": "Demo Sandbox for the Symfony Content Management Framework",
"homepage": "http://cmf.symfony.com",
"license": "MIT",
"authors": [
{
"name": "Symfony CMF Community",
"homepage": "https://github.com/symfony-cmf/SimpleCmsBundle/contributors"
}
],
"autoload": {
"psr-0": { "": "src/" }
},
"require": {
"php": ">=5.3.9",
"symfony/symfony": "~2.3",
"twig/extensions": "~1.0",
"symfony/assetic-bundle": "~2.3",
"symfony/swiftmailer-bundle": "~2.3",
"symfony/monolog-bundle": "~2.3",
"sensio/distribution-bundle": "~3.0",
"sensio/framework-extra-bundle": "~2.3",
"symfony-cmf/symfony-cmf": "1.2.*",
"symfony-cmf/simple-cms-bundle": "1.2.*",
"symfony-cmf/search-bundle": "1.1.*",
"symfony-cmf/create-bundle": "1.2.*",
"symfony-cmf/seo-bundle": "1.1.*",
"symfony-cmf/routing-auto-bundle": "1.0.*",
"jackalope/jackalope-doctrine-dbal": "1.1.*",
"jackalope/jackalope-jackrabbit": "1.1.*",
"doctrine/doctrine-bundle": "~1.2",
"doctrine/data-fixtures": "~1.0",
"doctrine/doctrine-cache-bundle": "~1.0",
"sonata-project/cache-bundle": "~2.1",
"sonata-project/doctrine-phpcr-admin-bundle": "1.2.*",
"sonata-project/admin-bundle": ">=2.3.3",
"eko/feedbundle": "~1.0",
"lunetics/locale-bundle": "~2.3",
"liip/imagine-bundle": "~1.0",
"wjzijderveld/check-bundles": "~1.1",
"helios-ag/fm-elfinder-bundle": "~1.4",
"burgov/key-value-form-bundle": "~1.0"
},
"require-dev": {
"sensio/generator-bundle": "~2.3",
"liip/functional-test-bundle": "~1.0",
"symfony-cmf/testing": "1.2.*"
},
"minimum-stability": "stable",
"scripts": {
"post-install-cmd": [
"WillemJan\\CheckBundles\\Composer\\CheckBundles::postPackageUpdate",
"Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreateAndCkeditor",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"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",
"Symfony\\Cmf\\Bundle\\CreateBundle\\Composer\\ScriptHandler::downloadCreateAndCkeditor",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"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"
],
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": {
"dev-master": "1.3-dev"
}
}
}