-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
44 lines (44 loc) · 1.18 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
{
"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": "alpha",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"consolidation/robo": "^4.0 || ^5.0",
"gitonomy/gitlib": "^1.0",
"jakeasmith/http_build_url": "^1.0.1",
"nuvoleweb/robo-config": "^3.1"
},
"require-dev": {
"openeuropa/code-review-library": "^1.0.0-alpha1",
"phpunit/phpunit": "^9.5"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/openeuropa/code-review-library.git"
}
],
"autoload": {
"psr-4": {
"OpenEuropa\\TaskRunner\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenEuropa\\TaskRunner\\Tests\\": "./tests/",
"My\\Custom\\": "./tests/custom/src/"
}
},
"bin": ["bin/run"],
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp-shim": true
}
}
}