-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
98 lines (98 loc) · 2.22 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
{
"name": "solidbunch/starter-kit-theme",
"description": "WordPress starter theme with a modern development stack for launching projects faster and easily",
"type": "wordpress-theme",
"license": "MIT",
"homepage": "https://starter-kit.io",
"authors": [
{
"name": "SolidBunch Team",
"email": "[email protected]",
"homepage": "https://solidbunch.com"
},
{
"name": "Yurii Pavlov"
},
{
"name": "Valerii Vasyliev"
},
{
"name": "Nikita Bolotov"
},
{
"name": "Viktor Sedzialo"
},
{
"name": "Dmytro Kudleichuk"
},
{
"name": "Nikolay Kravchenko"
}
],
"keywords": [
"wordpress",
"starter",
"theme"
],
"support": {
"issues": "https://github.com/solidbunch/starter-kit-theme/issues"
},
"require": {
"php": ">=8.1",
"htmlburger/carbon-fields": "3.6.2",
"laminas/laminas-config-aggregator": "1.14.0",
"monolog/monolog": "3.5.0",
"php-di/php-di": "7.0.6",
"vvv3/wp-responsive-images": "1.0.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "1.0.0",
"filp/whoops": "2.15.4",
"phpcompatibility/phpcompatibility-wp": "2.1.4",
"phpunit/phpunit": "10.5.3",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "3.7.2"
},
"scripts": {
"install-dev": [
"composer install"
],
"install-prod": [
"composer install --no-dev --no-interaction --optimize-autoloader"
],
"update-dev": [
"composer update"
],
"update-prod": [
"composer update --no-dev --no-interaction --optimize-autoloader"
],
"lint": [
"phpcs --standard=phpcs.xml"
],
"lintfix": [
"phpcbf --standard=phpcs.xml"
],
"tests": [
"vendor/bin/phpunit -c phpunit.xml --colors=always --testdox"
]
},
"autoload": {
"psr-4": {
"StarterKit\\": "src/",
"StarterKitBlocks\\": "blocks/"
}
},
"autoload-dev": {
"psr-4": {
"StarterKitTests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
}
}