-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
134 lines (134 loc) · 3.88 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
130
131
132
133
134
{
"name": "italystrap/ciao",
"description": "Experimental theme",
"keywords": [
"WordPress",
"WordPress theme"
],
"type": "wordpress-theme",
"license": "MIT",
"authors": [
{
"name": "Enea Overclokk",
"email": "info@overclokk.net",
"homepage": "https://www.italystrap.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.4"
},
"require-dev": {
"lucatume/wp-browser": "^3.0",
"lucatume/function-mocker-le": "^1.0",
"codeception/c3": "2.*",
"codeception/module-asserts": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/util-universalframework": "^1.0",
"squizlabs/php_codesniffer": "*",
"phpcompatibility/php-compatibility": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"italystrap/config": "^2.4",
"italystrap/html": "^1.2",
"italystrap/theme-json-generator": "dev-master",
"italystrap/debug": "^2.0",
"vimeo/psalm": "^4.8",
"phpbench/phpbench": "@dev",
"phpmetrics/phpmetrics": "^2.5",
"infection/infection": "^0.25",
"phpspec/prophecy-phpunit": "^1.1",
"infection/codeception-adapter": "^0.4.0"
},
"autoload": {
"psr-4": {
"ItalyStrap\\ExperimentalTheme\\": "src/"
},
"files": [
"functions/autoload.php"
]
},
"autoload-dev": {
"classmap": [
"tests/"
],
"psr-4": {
"ItalyStrap\\Tests\\": "tests/"
},
"files": [
"functions/autoload.php"
]
},
"extra": {
"theme-json": {
"path-for-theme-sass": "assets/sass/"
}
},
"scripts": {
"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"
],
"integration": [
"@php ./vendor/bin/codecept run integration"
],
"infection": [
"echo \"Running Infection...\"",
"echo \"Also remember to escape suite correctly, example --skip=integration or --skip=wpunit\"",
"@php ./vendor/bin/infection --threads=max"
],
"bench": [
"@php ./vendor/bin/phpbench run tests/Benchmark --report=performance"
],
"metrics": [
"@php ./vendor/bin/phpmetrics --report-html='./tests/_output/report' ./src"
],
"insights": [
"@php ./vendor/bin/phpinsights"
],
"clean": [
"@php ./vendor/bin/codecept clean"
],
"qa": [
"@cs",
"@psalm",
"@unit",
"@integration",
"@infection"
],
"rector": [
"@php ./vendor/bin/rector process --dry-run"
],
"rector:fix": [
"@php ./vendor/bin/rector process"
],
"theme/json": [
"@php ./vendor/bin/theme-json dump",
"@php ./vendor/bin/theme-json validate"
]
},
"support": {
"issues": "/~https://github.com/ItalyStrap/experimental-theme/issues",
"source": "/~https://github.com/ItalyStrap/experimental-theme"
},
"config": {
"allow-plugins": {
"codeception/c3": true,
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"italystrap/theme-json-generator": true
}
}
}