-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
52 lines (52 loc) · 1.22 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
{
"name": "civicrm/civicrm-dist-manager",
"license": ["agpl-3.0-or-later"],
"type": "project",
"autoload": {
"psr-4": {
"": "src/"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "~7.4",
"ext-json": "*",
"doctrine/cache": "~1.13",
"symfony/symfony": "~3.1",
"symfony/monolog-bundle": "~3.0",
"symfony/polyfill-apcu": "^1.0",
"incenteev/composer-parameter-handler": "^2.0",
"google/cloud-storage": "^1.9"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.0"
},
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"./bin/console cache:clear --no-warmup"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"extra": {
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
},
"config": {
"php": "7.4.0"
}
}