-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
63 lines (63 loc) · 1.59 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
{
"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,
"sort-packages": true
},
"require": {
"php": "^8.1",
"alleyinteractive/composer-wordpress-autoloader": "^1.0",
"alleyinteractive/wp-type-extensions": "^2.0",
"symfony/http-foundation": "^v6.4.12"
},
"require-dev": {
"alleyinteractive/alley-coding-standards": "^2.0",
"friendsofphp/php-cs-fixer": "^3.8",
"mantle-framework/testkit": "^1.0",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"scripts": {
"fixer": "php-cs-fixer -v fix --allow-risky=yes",
"fixer:test": "php-cs-fixer fix -v --dry-run --stop-on-violation --using-cache=no --allow-risky=yes",
"lint": [
"@phpcs",
"@fixer:test",
"@phpstan"
],
"phpcbf": "phpcbf",
"phpcs": "phpcs",
"phpstan": "phpstan --memory-limit=768M",
"phpunit": "phpunit",
"scaffold": "npx npx @alleyinteractive/scaffolder@latest wp-alleyvate@feature",
"test": [
"@lint",
"@phpunit"
]
},
"autoload-dev": {
"psr-4": {
"Alley\\WP\\Alleyvate\\": "tests/Alley/WP/Alleyvate"
}
},
"extra": {
"wordpress-autoloader": {
"autoload": {
"Alley\\": "src/alley/"
}
}
}
}