forked from alleyinteractive/wp-alleyvate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.07 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
{
"name": "alleyinteractive/wp-alleyvate",
"description": "Defaults for WordPress sites by Alley.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Alley",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"alleyinteractive/composer-wordpress-autoloader": true,
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"lock": false
},
"require": {
"php": "^8.0",
"alleyinteractive/composer-wordpress-autoloader": "^1.0",
"composer/installers": "^1.0"
},
"require-dev": {
"alleyinteractive/alley-coding-standards": "^1.0",
"friendsofphp/php-cs-fixer": "^3.8",
"mantle-framework/testkit": "^0.9"
},
"scripts": {
"fixer": "php-cs-fixer -v fix --allow-risky=yes",
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phpunit": "phpunit"
},
"extra": {
"wordpress-autoloader": {
"autoload": {
"Alley\\": "src/alley/"
},
"autoload-dev": {
"Alley\\": "tests/alley/"
}
}
}
}