-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
98 lines (98 loc) · 4.34 KB
/
composer.json
File metadata and controls
98 lines (98 loc) · 4.34 KB
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
{
"name": "admin/cms-symfony2",
"type": "symfony-distribution",
"description": "adminCMS is a Symfony2 CMS distribution with integrated Zurb Foundation 5 (Bower and Grunt with custom builds included for better workflow) for front end and all the major bundles pre-configured (Sonata Admin, User, Media, FOSUser, KnpMenu, Guzzle) combined with extra bundles to provide a fully functional out of the box responsive CMS for websites",
"keywords": ["symfony2", "zurb foundation", "cms", "responsive", "doctrine", "content management", "guzzle", "rest"],
"license": "MIT",
"homepage": "https://github.com/bardius/adminCMS",
"authors": [
{
"name": "George admin",
"email": "george@admin.info"
}
],
"support": {
"email": "george@admin.info",
"issues": "https://github.com/bardius/adminCMS/issues"
},
"autoload": {
"psr-4": { "": "src/" },
"files": [ "app/AppKernel.php" ]
},
"require": {
"php": ">=5.5.0",
"symfony/symfony": "v2.8.4"
},
"require-dev": {
"doctrine/orm": "~2.4.8",
"doctrine/doctrine-bundle": "dev-master",
"doctrine/doctrine-fixtures-bundle": "dev-master",
"doctrine/data-fixtures": "dev-master",
"twig/extensions": "dev-master",
"symfony/assetic-bundle": "dev-master",
"symfony/swiftmailer-bundle": "dev-master",
"symfony/monolog-bundle": "dev-master",
"sensio/distribution-bundle": "~5.0",
"sensio/framework-extra-bundle": ">=3.0.9",
"sensio/generator-bundle": "~3.0",
"jms/security-extra-bundle": "dev-master",
"jms/di-extra-bundle": "dev-master",
"jms/serializer-bundle": ">=0.13.0",
"friendsofsymfony/user-bundle": "~1.3",
"friendsofsymfony/rest-bundle": "~1.1",
"sonata-project/core-bundle": "dev-master",
"sonata-project/admin-bundle": "dev-master",
"sonata-project/exporter": ">=1.3.4",
"sonata-project/block-bundle": "dev-master",
"sonata-project/cache-bundle": "dev-master",
"sonata-project/media-bundle": "dev-master",
"sonata-project/classification-bundle": "dev-master",
"sonata-project/user-bundle": "dev-master",
"sonata-project/doctrine-orm-admin-bundle": "dev-master",
"sonata-project/timeline-bundle": "dev-master",
"nelmio/api-doc-bundle": "~2.4",
"knplabs/knp-menu-bundle": "~2.1.1",
"stfalcon/tinymce-bundle": "dev-master",
"sonata-project/intl-bundle": "dev-master",
"toopay/assetic-minifier": "dev-master",
"stof/doctrine-extensions-bundle": "~1.2.1",
"csa/guzzle-bundle": "dev-master",
"incenteev/composer-parameter-handler": "~2.0",
"symfony/phpunit-bridge": "~2.7"
},
"scripts": {
"pre-install-cmd": [
],
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "2.8-dev"
},
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}