forked from ec-europa/toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 3.04 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "ec-europa/toolkit",
"description": "Toolkit packaged for Drupal projects based on Robo.",
"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"
},
"bin": ["run"],
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"behat/behat": "^3.7",
"composer/composer": "^2.7",
"consolidation/annotated-command": "^4.7.0",
"consolidation/robo": "^3.0 || ^4.0 || ^5.0",
"cweagans/composer-patches": "^1.7 || ^2.0",
"drush/drush": "^11.0.4 || ^12.0 || ^13.0",
"ec-europa/qa-automation": "^9.3",
"ec-europa/toolkit-composer-plugin": "^0.0.1",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"jakeasmith/http_build_url": "^1.0",
"league/container": "^4.1.1",
"mglaman/phpstan-drupal": "^1.1",
"pear/archive_tar": "^1.4",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpmd/phpmd": "^2.12",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpunit": "^9.5 || ^10.0",
"squizlabs/php_codesniffer": "^3.7",
"vlucas/phpdotenv": "^5.6"
},
"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,
"allow-plugins": {
"cweagans/composer-patches": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ec-europa/toolkit-composer-plugin": 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'",
"php -r \"file_exists('vendor/bin/run') || (copy('run', 'vendor/bin/run') && chmod('vendor/bin/run', fileperms('run')));\""
],
"post-update-cmd": [
"./vendor/bin/phpcs --config-set installed_paths '../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,phpcs,../../ec-europa/qa-automation/phpcs'",
"php -r \"file_exists('vendor/bin/run') || (copy('run', 'vendor/bin/run') && chmod('vendor/bin/run', fileperms('run')));\""
]
}
}