forked from openeuropa/task-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.13 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
{
"name": "openeuropa/task-runner",
"description": "PHP task runner based on Robo, focused on extensibility.",
"keywords": ["Robo", "automation", "task-runner", "yaml"],
"license": "EUPL-1.2",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2",
"consolidation/robo": "^1.4.7",
"gitonomy/gitlib": "^1.0",
"jakeasmith/http_build_url": "^1.0.1",
"nuvoleweb/robo-config": "^0.2.1",
"symfony/console": "^3.4.21|^4|^5"
},
"require-dev": {
"openeuropa/code-review": "~1.0.0-beta3",
"phpunit/phpunit": "~6.0||~7.0",
"slevomat/coding-standard": "~6.0"
},
"autoload": {
"psr-4": {
"OpenEuropa\\TaskRunner\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenEuropa\\TaskRunner\\Tests\\": "./tests/",
"My\\Custom\\": "./tests/custom/src/"
}
},
"extra": {
"enable-patching": true,
"composer-exit-on-patch-failure": true
},
"bin": ["bin/run"],
"config": {
"sort-packages": true
}
}