-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (77 loc) · 2.05 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
78
79
{
"name": "italystrap/storage-tests",
"description": "ItalyStrap common StorageTests",
"keywords": ["storage tests", "test"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Enea Overclokk",
"email": "[email protected]",
"homepage": "https://www.italystrap.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php" : ">=7.4"
},
"require-dev": {
"lucatume/wp-browser": "^3.1",
"codeception/module-asserts": "^1.0",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"vimeo/psalm": "^4.26",
"italystrap/config": "^2.6"
},
"autoload": {
"psr-4": {
"ItalyStrap\\StorageTests\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ItalyStrap\\Tests\\": "tests/src",
"ItalyStrap\\Tests\\Unit\\": "tests/unit"
}
},
"scripts": {
"qa": [
"@cs",
"@psalm",
"@unit",
"@clean"
],
"tests": [
"@unit"
],
"cs": [
"@php vendor/bin/phpcs -p"
],
"cs:fix": [
"@php vendor/bin/phpcbf -p"
],
"psalm": [
"@php vendor/bin/psalm --no-cache"
],
"unit": [
"@php vendor/bin/codecept run unit"
],
"unit:debug": [
"@php vendor/bin/codecept run unit --debug"
],
"clean": [
"@php vendor/bin/codecept clean"
]
},
"support" : {
"issues": "https://github.com/ItalyStrap/storage-tests/issues",
"source": "https://github.com/ItalyStrap/storage-tests"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}