forked from openeuropa/task-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.26 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
{
"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.4",
"consolidation/robo": "^3.0 | ^4.0",
"gitonomy/gitlib": "^1.0",
"jakeasmith/http_build_url": "^1.0.1",
"nuvoleweb/robo-config": "^2.0"
},
"require-dev": {
"openeuropa/code-review": "^2.0",
"phpunit/phpunit": "^9.4",
"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,
"allow-plugins": {
"cweagans/composer-patches": true,
"phpro/grumphp": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}