-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
106 lines (106 loc) · 3.47 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
{
"name": "webfactory/zauberlehrling",
"license": "MIT",
"type": "project",
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^7.2",
"ext-PDO": "*",
"doctrine/common": "^2.4",
"doctrine/doctrine-bundle": "^1.6",
"greenlion/php-sql-parser": "^4.2.1",
"incenteev/composer-parameter-handler": "^2.0",
"psr/cache": "^1.0",
"psr/log": "^1.0",
"sensio/distribution-bundle": "^5.0",
"symfony/cache": "^3.2",
"symfony/config": "^3.2",
"symfony/console": "^3.2",
"symfony/debug": "^3.2",
"symfony/debug-bundle": "^3.2",
"symfony/dependency-injection": "^3.2",
"symfony/doctrine-bridge": "^3.2",
"symfony/event-dispatcher": "^3.2",
"symfony/filesystem": "^3.2",
"symfony/finder": "^3.2",
"symfony/framework-bundle": "^3.2",
"symfony/monolog-bridge": "^3.2",
"symfony/monolog-bundle": "^3.0",
"symfony/polyfill-intl-icu": "^1.0",
"symfony/polyfill-mbstring": "^1.0",
"symfony/polyfill-php56": "^1.0",
"symfony/polyfill-php70": "^1.0",
"symfony/process": "^3.2",
"symfony/property-access": "^3.2",
"symfony/proxy-manager-bridge": "^3.2",
"symfony/stopwatch": "^3.2",
"symfony/translation": "^3.2",
"symfony/var-dumper": "^3.2",
"symfony/yaml": "^3.2"
},
"require-dev": {
"cache/integration-tests": "dev-master",
"composer/composer": "^1.2",
"doctrine/cache": "^1.6",
"doctrine/data-fixtures": "1.0.*",
"doctrine/dbal": "^2.4",
"doctrine/doctrine-bundle": "^1.4",
"doctrine/orm": "^2.4,>=2.4.5",
"egulias/email-validator": "^1.2,>=1.2.8|^2.0",
"ocramius/proxy-manager": "^0.4|^1.0|^2.0",
"phpdocumentor/reflection-docblock": "^3.0",
"phpunit/phpunit": "^7.5",
"predis/predis": "^1.0",
"roave/security-advisories": "dev-master",
"satooshi/php-coveralls": "^1.0",
"symfony/phpunit-bridge": "^3.2",
"symfony/polyfill-apcu": "^1.1",
"symfony/security-acl": "^2.8|^3.0"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.2.24"
}
},
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::prepareDeploymentTarget"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
},
"branch-alias": null
}
}