-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
56 lines (56 loc) · 1.58 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
53
54
55
56
{
"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": ">=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.x-dev",
"phpunit/phpunit": "^9.4",
"slevomat/coding-standard": "^7.0 || ^8.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/AaronGilMartinez/robo-config.git"
},
{
"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/"
}
},
"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,
"phpro/grumphp-shim": true
}
}
}