-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
117 lines (117 loc) · 5.04 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
108
109
110
111
112
113
114
115
116
117
{
"name": "symedit/symedit",
"type": "library",
"description": "SymEdit - Symfony2 Content Management System (CMS)",
"homepage": "http://symedit.com",
"authors": [
{
"name": "Craig Blanchette",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.3.3",
"doctrine/orm": "@stable",
"doctrine/doctrine-bundle": "@stable",
"doctrine/doctrine-fixtures-bundle": "@stable",
"doctrine/doctrine-cache-bundle": "@stable",
"doctrine/doctrine-migrations-bundle": "@stable",
"friendsofsymfony/oauth-server-bundle": "@stable",
"friendsofsymfony/user-bundle": "@stable",
"friendsofsymfony/rest-bundle": "@stable",
"incenteev/composer-parameter-handler": "@stable",
"isometriks/spam-bundle": "^1.0",
"isometriks/json-ld-dumper-bundle": "@stable",
"jms/aop-bundle": "@stable",
"jms/serializer-bundle": "@stable",
"knplabs/knp-gaufrette-bundle": "@stable",
"knplabs/knp-menu-bundle": "^2.2",
"liip/imagine-bundle": "@stable",
"mopa/bootstrap-bundle": "@stable",
"ocramius/proxy-manager": "@stable",
"sensio/distribution-bundle": "@stable",
"sensio/framework-extra-bundle": "@stable",
"stof/doctrine-extensions-bundle": "@stable",
"sylius/resource-bundle": "@stable",
"sylius/grid-bundle": "^1.2",
"sylius/ui-bundle": "^1.2",
"symfony/assetic-bundle": "@stable",
"symfony/monolog-bundle": "@stable",
"symfony/swiftmailer-bundle": "@stable",
"symfony/symfony": "^4.0",
"symfony-cmf/routing-bundle": "@stable",
"symfony-cmf/routing": "@stable",
"twig/extensions": "@stable",
"twig/twig": "@stable",
"white-october/pagerfanta-bundle": "@stable",
"zfr/zfr-mailchimp": "@stable"
},
"require-dev": {
"behat/behat": "^3.0",
"behat/symfony2-extension": "^2.1",
"behat/mink": "^1.7",
"behat/mink-extension": "^2.0",
"behat/mink-browserkit-driver": "^1.3",
"phpunit/phpunit": "@stable"
},
"replace": {
"symedit/analytics-bundle": "self.version",
"symedit/blog-bundle": "self.version",
"symedit/core-bundle": "self.version",
"symedit/events-bundle": "self.version",
"symedit/form-builder-bundle": "self.version",
"symedit/mailchimp-bundle": "self.version",
"symedit/media-bundle": "self.version",
"symedit/menu-bundle": "self.version",
"symedit/resource-bundle": "self.version",
"symedit/seo-bundle": "self.version",
"symedit/seo-export-bundle": "self.version",
"symedit/shortcode-bundle": "self.version",
"symedit/sitemap-bundle": "self.version",
"symedit/stylizer-bundle": "self.version",
"symedit/theme-bundle": "self.version",
"symedit/user-bundle": "self.version",
"symedit/widget-bundle": "self.version"
},
"autoload": {
"psr-4": { "SymEdit\\": "src/SymEdit" },
"classmap": [ "app/AppKernel.php", "app/CliKernel.php", "app/AppCache.php" ]
},
"scripts": {
"travis-build": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap"
],
"symfony-scripts": [
"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-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "0.11-dev"
},
"symfony-var-dir": "var",
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-web-dir": "web",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}