forked from ec-europa/toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.99 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
{
"name": "ec-europa/toolkit",
"description": "Toolkit packaged for Drupal 8.",
"license": "EUPL-1.2",
"type": "library",
"homepage": "https://github.com/ec-europa/toolkit",
"minimum-stability": "beta",
"prefer-stable": true,
"support": {
"email": "[email protected]",
"source": "https://github.com/ec-europa/toolkit"
},
"require": {
"php": "^7.3",
"ext-json": "*",
"behat/behat": "^3.7 || ^3.8",
"cweagans/composer-patches": "^1.4 || ^1.7",
"drush/drush": "^9.7.1 || ^10.0.0",
"ec-europa/qa-automation": "^8.1",
"guzzlehttp/guzzle": "^6.3",
"j13k/yaml-lint": "^1.1",
"openeuropa/task-runner": "dev-master as 1.0.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpunit/phpunit": "^7.5 || ^9.5"
},
"suggest": {
"drupal/console": "The Drupal CLI, tool to generate boilerplate code, interact with and debug Drupal."
},
"autoload": {
"psr-4": {
"EcEuropa\\Toolkit\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"EcEuropa\\Toolkit\\Tests\\": "./tests/"
}
},
"extra": {
"enable-patching": true,
"composer-exit-on-patch-failure": true
},
"config": {
"sort-packages": true
},
"scripts": {
"toolkit-update-phpcs-config": "$(pwd)/vendor/bin/phpcs --config-set installed_paths '../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,../../ec-europa/qa-automation/phpcs'",
"post-install-cmd": [
"./vendor/bin/phpcs --config-set installed_paths '../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,phpcs,../../ec-europa/qa-automation/phpcs'"
],
"post-update-cmd" : [
"./vendor/bin/phpcs --config-set installed_paths '../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,phpcs,../../ec-europa/qa-automation/phpcs'"
]
}
}