-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
129 lines (125 loc) · 3.64 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/config",
"description": "ItalyStrap Config Module - a simple and useful configuration package the OOP way",
"keywords": ["Config", "Configuration Object"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Enea Overclokk",
"email": "info@overclokk.net",
"homepage": "https://www.italystrap.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php" : ">=7.4",
"ext-json": "*",
"italystrap/storage": "^1.0.0"
},
"require-dev": {
"lucatume/wp-browser": "^3.1",
"lucatume/function-mocker-le": "^1.0",
"codeception/module-asserts": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"vimeo/psalm": "^4.26",
"humanmade/psalm-plugin-wordpress": "^2.0.3",
"phpbench/phpbench": "^1.2",
"phpmetrics/phpmetrics": "^2.8",
"rector/rector": "^0.15.17",
"infection/infection": "^0.26.6",
"infection/codeception-adapter": "^0.4.1",
"italystrap/debug": "^2.1",
"italystrap/event": "dev-master",
"italystrap/storage-tests": "dev-master"
},
"autoload": {
"psr-4": {
"ItalyStrap\\Config\\": "src/"
},
"classmap": [
"legacy/"
]
},
"autoload-dev": {
"classmap": [
"tests/"
],
"psr-4": {
"ItalyStrap\\Tests\\": "tests/src",
"ItalyStrap\\Tests\\Unit\\": "tests/unit",
"ItalyStrap\\Tests\\Stubs\\": "tests/_data/Stubs"
},
"files": [
]
},
"scripts": {
"qa": [
"@cs",
"@psalm",
"@unit",
"@clean",
"@infection",
"@examples"
],
"tests": [
"@unit",
"@infection"
],
"cs": [
"@php vendor/bin/phpcs -p --ignore=./tests/_support/* ./src/ ./tests/"
],
"cs:fix": [
"@php vendor/bin/phpcbf -p --ignore=./tests/_support/* ./src/ ./tests/"
],
"psalm": [
"@php vendor/bin/psalm --no-cache"
],
"unit": [
"@php vendor/bin/codecept run unit"
],
"unit:debug": [
"@php vendor/bin/codecept run unit --debug"
],
"infection": [
"@php vendor/bin/infection --threads=4"
],
"bench": [
"@php vendor/bin/phpbench run --report=stats"
],
"bench:prev": [
"@php vendor/bin/phpbench run --report=stats --tag=original"
],
"bench:compare:prev": [
"@php vendor/bin/phpbench run --report=stats --ref=original"
],
"metrics": [
"@php vendor/bin/phpmetrics --report-html='./tests/_output/report' ./src"
],
"insights": [
"@php vendor/bin/phpinsights"
],
"clean": [
"@php vendor/bin/codecept clean"
],
"examples": [
"@php example.php"
]
},
"support" : {
"issues": "https://github.com/ItalyStrap/config/issues",
"source": "https://github.com/ItalyStrap/config"
},
"config": {
"allow-plugins": {
"codeception/c3": true,
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": true
}
}
}