-
Notifications
You must be signed in to change notification settings - Fork 27
/
composer.json
85 lines (85 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
{
"name": "sulu/sulu-minimal",
"license": "MIT",
"type": "project",
"description": "The sulu content management framework",
"autoload": {
"psr-0": {
"": "src/"
},
"classmap": [
"app/AbstractKernel.php",
"app/AdminKernel.php",
"app/WebsiteCache.php",
"app/WebsiteKernel.php"
]
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" }
},
"require": {
"php": "^5.5.9 || ~7.0",
"twig/extensions": "^1.0",
"symfony/symfony": "^2.8.7 || ^3.0",
"symfony/monolog-bundle": "^2.8.7 || ^3.0",
"sensio/distribution-bundle": "^5.0.6",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "~2.1",
"sulu/sulu": "~1.6.45",
"dantleech/phpcr-migrations-bundle": "~1.0",
"handcraftedinthealps/zendsearch": "^2.0",
"massive/build-bundle": "^0.3 || ^0.4",
"jackalope/jackalope-doctrine-dbal": "^1.2.5",
"jackalope/jackalope-jackrabbit": "^1.2",
"doctrine/doctrine-fixtures-bundle": "~2.3",
"doctrine/doctrine-bundle": "^1.0",
"doctrine/doctrine-cache-bundle": "^1.0"
},
"require-dev": {
"sensio/generator-bundle": "~2.8 || ~3.0",
"phpcr/phpcr-shell": "~1.0",
"symfony/phpunit-bridge": "^2.8.7 || ^3.0"
},
"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",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget",
"Sulu\\Bundle\\TranslateBundle\\Composer\\TranslateScriptHandler::installTranslations",
"Sulu\\Bundle\\MediaBundle\\Composer\\MediaScriptHandler::initBundle",
"Massive\\Bundle\\SearchBundle\\Composer\\SearchScriptHandler::initBundle"
],
"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",
"Sulu\\Bundle\\TranslateBundle\\Composer\\TranslateScriptHandler::installTranslations",
"Sulu\\Bundle\\MediaBundle\\Composer\\MediaScriptHandler::initBundle",
"Massive\\Bundle\\SearchBundle\\Composer\\SearchScriptHandler::initBundle"
],
"post-create-project-cmd": [
"Sulu\\Bundle\\CoreBundle\\Composer\\ScriptHandler::removeComposerLockFromGitIgnore"
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-web-dir": "web",
"symfony-var-dir": "var",
"symfony-assets-install": "relative",
"incenteev-parameters": [
{
"file": "app/config/parameters.yml"
}
]
}
}