forked from symfony-cmf/symfony-cmf-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·49 lines (49 loc) · 1.86 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
{
"name": "symfony-cmf/website",
"autoload": {
"psr-4": { "": "src/" }
},
"require": {
"php": ">=5.3.3",
"symfony/symfony": "~2.6",
"twig/extensions": "~1.0",
"symfony/monolog-bundle": "~2.3",
"sensio/distribution-bundle": "~2.3",
"symfony-cmf/simple-cms-bundle": "~1.1",
"symfony-cmf/block-bundle": "~1.1",
"symfony-cmf/seo-bundle": "~1.0",
"friendsofsymfony/rest-bundle": "~1.0",
"jms/serializer-bundle": ">=0.12,<0.14",
"jackalope/jackalope-doctrine-dbal": "1.1.*",
"doctrine/doctrine-bundle": "~1.2",
"doctrine/data-fixtures": "~1.0",
"liip/functional-test-bundle": "~1.0",
"doctrine/doctrine-cache-bundle": "~1.0",
"seld/slippy": "dev-master",
"erusev/parsedown": "~1.5"
},
"scripts": {
"post-install-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"AppBundle\\Composer\\ScriptHandler::compileSlides"
],
"post-update-cmd": [
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"AppBundle\\Composer\\ScriptHandler::compileSlides"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"slippy-source-dir": "app/Resources/slides",
"slippy-target-dir": "web/slides",
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-assets-install": "relative"
}
}