-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
88 lines (88 loc) · 3.48 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
{
"name": "ekreative/server-manager",
"license": "MIT",
"type": "project",
"description": "An app for storing data about servers",
"autoload": {
"psr-4": {
"AppBundle\\": "src/AppBundle/",
"SymfonyStandard\\": "app/SymfonyStandard/"
},
"files": ["app/AppKernel.php"]
},
"autoload-dev": {
"psr-4": {
"AppBundle\\Tests\\": "tests/AppBundle/Tests/"
},
"files": ["app/AppKernel.php"]
},
"require": {
"php": ">=5.6",
"ext-redis": "*",
"symfony/symfony": "3.3.*",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"symfony/swiftmailer-bundle": "^2.3",
"symfony/monolog-bundle": "^3.1.0",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "^2.0",
"doctrine/doctrine-migrations-bundle": "^1.1",
"ekreative/redmine_login": "^3.7",
"nelmio/api-doc-bundle": "^2.13",
"jrschumacher/symfony-redis-session-handler": "^1.0",
"stof/doctrine-extensions-bundle": "^1.2",
"knplabs/knp-paginator-bundle": "^2.6",
"guzzlehttp/guzzle": "^6.3",
"ext-apcu": "*",
"symfony/finder": "^2.0",
"symfony/yaml": "^3.0",
"knplabs/knp-markdown-bundle": "^1.5"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"phpunit/phpunit": "^4.8",
"symfony/phpunit-bridge": "^3.0",
"hautelook/alice-bundle": "^1.4",
"doctrine/data-fixtures": "^1.2"
},
"scripts": {
"post-root-package-install": [
"SymfonyStandard\\Composer::hookRootPackageInstall"
],
"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::removeSymfonyStandardFiles",
"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::removeSymfonyStandardFiles",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
]
},
"config": {
"platform": {
"php": "5.6"
}
},
"extra": {
"symfony-app-dir": "app",
"symfony-web-dir": "web",
"symfony-var-dir": "var",
"symfony-bin-dir": "bin",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}