forked from sulu/sulu-minimal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 3.49 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
{
"name": "sulu/sulu-minimal",
"license": "MIT",
"type": "project",
"description": "The sulu content management framework",
"version": "1.5.23",
"autoload": {
"psr-0": {
"": "src/"
},
"classmap": [
"app/AbstractKernel.php",
"app/AdminKernel.php",
"app/WebsiteCache.php",
"app/WebsiteKernel.php"
]
},
"require": {
"php": ">=5.5",
"twig/extensions": "^1.0",
"symfony/monolog-bundle": "^2.4",
"sensio/distribution-bundle": "^5.0",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "^2.0",
"sulu/sulu": "1.5.*",
"dantleech/phpcr-migrations-bundle": "0.1.*",
"zendframework/zend-stdlib": "^2.3",
"zendframework/zendsearch": "@dev",
"massive/build-bundle": "0.2.*",
"jackalope/jackalope-doctrine-dbal": "^1.2.5",
"jackalope/jackalope-jackrabbit": "^1.2.0",
"doctrine/doctrine-fixtures-bundle": "2.2.*",
"doctrine/doctrine-bundle": "^1.0",
"doctrine/doctrine-cache-bundle": "^1.0",
"oro/doctrine-extensions": "^1.0"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"phpcr/phpcr-shell": "@beta"
},
"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"
}
]
}
}