-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 840 Bytes
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 840 Bytes
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
{
"require": {
"php": "^7.4",
"monolog/monolog": "^2.0",
"symfony/console": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/config": "^5.0",
"symfony/yaml": "^5.0",
"doctrine/orm": "^2.7",
"symfony/event-dispatcher": "^5.1",
"ext-json": "*",
"knplabs/github-api": "^2.14",
"php-http/guzzle6-adapter": "^2.0",
"symfony/process": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"pestphp/pest": "^0.1.5",
"mockery/mockery": "^1.4"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {"Devops\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Devops\\": "tests/"}
},
"bin": [
"devops"
],
"scripts": {
"post-install-cmd": [
"cp -n config/parameters.yaml.dist config/parameters.yaml || true"
]
}
}