-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (41 loc) · 1.26 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
{
"name": "aidenbradley/test-support",
"description": "Provides various traits to help test setup and assertions in Drupal Kernel tests",
"type": "drupal-module",
"require": {
"php": ">=7.3.0",
"opis/closure": "^3.6",
"nesbot/carbon": "^2.69",
"illuminate/collections": ">=8.83"
},
"require-dev": {
"mglaman/phpstan-drupal": "^1.1",
"sempro/phpunit-pretty-print": "^1.4",
"brianium/paratest": "^6.9",
"symplify/easy-coding-standard": "^11.5"
},
"license": "MIT",
"authors": [
{
"name": "Aiden Bradley",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"infection/extension-installer": true
},
"platform": {
"php": "7.3"
}
},
"scripts": {
"fix:code-smells": "vendor/bin/ecs --fix",
"test:code-smells": "vendor/bin/ecs",
"test:types": "php -d memory_limit=4G vendor/bin/phpstan analyse -c phpstan.neon",
"test:mess": "vendor/bin/phpmd tests/src/Traits ansi phpmd.xml"
}
}