forked from ItalyStrap/theme-json-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
118 lines (118 loc) · 3.7 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
{
"name": "italystrap/theme-json-generator",
"description": "A WordPress theme.json generator from a PHP array",
"keywords": ["WordPress", "WordPress theme.json"],
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Enea Overclokk",
"email": "[email protected]",
"homepage": "https://www.italystrap.com",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php" : ">=7.4",
"composer-plugin-api": "^2.0",
"italystrap/config": "^2.4",
"mexitek/phpcolors": "^1.0",
"spatie/color": "~1.5.0"
},
"require-dev": {
"lucatume/wp-browser": "^3.0",
"lucatume/function-mocker-le": "^1.0.1",
"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",
"phpstan/phpstan": "^0.12",
"szepeviktor/phpstan-wordpress": "^0.5",
"vimeo/psalm": "^4.8",
"phpbench/phpbench": "@dev",
"phpmetrics/phpmetrics": "^2.5",
"infection/infection": "^0.25",
"infection/codeception-adapter": "^0.4.0",
"italystrap/debug": "^2.0",
"phpspec/prophecy-phpunit": "^1.1",
"composer/composer": "^2.1",
"wp-cli/wp-cli": "^2.7"
},
"autoload": {
"psr-4": {
"ItalyStrap\\ThemeJsonGenerator\\": "src/"
},
"files": [
"functions/autoload.php"
]
},
"autoload-dev": {
"classmap": [
"tests/"
],
"psr-4": {
"ItalyStrap\\Tests\\": "tests/"
}
},
"provide": {},
"suggest": {
"spatie/color": "Allows to convert CSS color"
},
"extra": {
"class": "ItalyStrap\\ThemeJsonGenerator\\ComposerPlugin"
},
"scripts": {
"cs": [
"vendor\\bin\\phpcbf -p --ignore=./tests/_support/* ./src/ ./tests/ && vendor\\bin\\phpcs -p --ignore=./tests/_support/* ./src/ ./tests/"
],
"analyze": [
"vendor\\bin\\phpstan analyze --level=max && vendor\\bin\\psalm"
],
"unit": [
"vendor\\bin\\codecept run unit && vendor\\bin\\infection --threads=4",
"@clean"
],
"unit:debug": [
"vendor\\bin\\codecept run unit --debug",
"@clean"
],
"unit:debug:coverage": [
"vendor\\bin\\codecept run unit --debug --coverage-text",
"@clean"
],
"bench": [
"vendor\\bin\\phpbench run --report=performance"
],
"metrics": [
"vendor\\bin\\phpmetrics --report-html='./tests/_output/report' ./src"
],
"insights": [
"vendor\\bin\\phpinsights"
],
"clean": [
"vendor\\bin\\codecept clean"
],
"json": [
"ItalyStrap\\ThemeJsonGenerator\\ComposerPlugin::run"
]
},
"support" : {
"issues": "https://github.com/ItalyStrap/theme-json-generator/issues",
"source": "https://github.com/ItalyStrap/theme-json-generator"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"codeception/c3": true
}
}
}