-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·39 lines (39 loc) · 1.14 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
{
"name": "openeuropa/task-runner-drupal-project-symlink",
"description": "OpenEuropa TaskRunner command to symlink a Drupal project codebase within a development site, built locally via Composer.",
"keywords": ["Robo", "automation", "task-runner", "drupal"],
"license": "EUPL-1.2",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"openeuropa/task-runner": "2.x-dev"
},
"require-dev": {
"openeuropa/code-review": "^2.0.0-alpha6",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"OpenEuropa\\DrupalProjectSymlink\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenEuropa\\DrupalProjectSymlink\\Tests\\": "./tests/"
}
},
"extra": {
"enable-patching": true,
"composer-exit-on-patch-failure": true
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpro/grumphp": true,
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}