-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
129 lines (124 loc) · 3.44 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "italystrap/storage",
"description": "A storage library for ItalyStrap",
"keywords": ["storage", "italystrap"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Enea",
"email": "info@overclokk.net",
"homepage": "http://overclokk.net",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php" : ">=7.4",
"italystrap/common": "^1.0"
},
"require-dev": {
"lucatume/wp-browser": "^3.1",
"lucatume/function-mocker-le": "^1.0",
"codeception/module-asserts": "^1.0",
"codeception/module-db": "^1.2",
"codeception/module-phpbrowser": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"inpsyde/wp-stubs": "dev-main",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"vimeo/psalm": "^5.6",
"humanmade/psalm-plugin-wordpress": "^3.0.0-alpha1",
"phpbench/phpbench": "^1.2",
"phpmetrics/phpmetrics": "^2.8",
"infection/infection": "^0.26.6",
"infection/codeception-adapter": "^0.4.1",
"rector/rector": "^0.15.17",
"italystrap/debug": "^2.1",
"italystrap/storage-tests": "dev-master"
},
"autoload": {
"psr-4": {
"ItalyStrap\\Storage\\": [
"src/"
]
}
},
"autoload-dev": {
"classmap": [
"tests/"
],
"psr-4": {
"ItalyStrap\\Tests\\": "tests/src/",
"ItalyStrap\\Tests\\Unit\\": "tests/unit/",
"ItalyStrap\\Tests\\WPUnit\\": "tests/wpunit/"
}
},
"scripts": {
"compat": [
"@php ./vendor/bin/phpcs -p --standard=PHPCompatibility src"
],
"metrics": [
"@php ./vendor/bin/phpmetrics --report-html='./tests/_output/report' ./src"
],
"infection": [
"@php ./vendor/bin/infection --threads=4"
],
"bench": [
"@php ./vendor/bin/phpbench run --report=performance"
],
"psalm": [
"@php ./vendor/bin/psalm --no-cache"
],
"clean": [
"@php ./vendor/bin/codecept clean"
],
"tests": [
"@unit",
"@wpunit"
],
"wpunit": [
"@php ./vendor/bin/codecept run wpunit"
],
"wpunit:coverage": [
"@wpunit --coverage-text"
],
"wpunit:debug": [
"@wpunit --debug"
],
"unit": [
"@php ./vendor/bin/codecept run unit"
],
"unit:coverage": [
"@unit --coverage-text"
],
"unit:debug": [
"@unit --debug"
],
"cs": [
"@php vendor/bin/phpcs -p"
],
"cs:fix": [
"@php vendor/bin/phpcbf -p"
],
"qa": [
"@compat",
"@cs",
"@psalm",
"@unit",
"@wpunit",
"@infection"
]
},
"support" : {
"issues": "https://github.com/ItalyStrap/storage/issues",
"source": "https://github.com/ItalyStrap/storage"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}