-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
67 lines (67 loc) · 2.34 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
{
"name": "leonstafford/accessible-minimalism-wordpress-theme",
"description": "Minimalist WordPress theme with a penchant for accessibility.",
"homepage": "https://github.com/leonstafford/accessible-minimalism-wordpress-theme",
"license": "UNLICENSE",
"authors": [
{
"name": "Leon Stafford",
"email": "[email protected]",
"homepage": "https://ljs.dev"
}
],
"type": "wordpress-theme",
"support": {
"issues": "https://github.com/leonstafford/accessible-minimalism-wordpress-theme/issues",
"forum": "https://github.com/leonstafford/accessible-minimalism-wordpress-theme/discussion",
"docs": "https://github.com/leonstafford/accessible-minimalism-wordpress-theme",
"source": "https://github.com/leonstafford/accessible-minimalism-wordpress-theme"
},
"require": {
"php": ">=7.4"
},
"require-dev": {
"10up/wp_mock": "*",
"dealerdirect/phpcodesniffer-composer-installer": "*",
"infection/infection": "*",
"mikey179/vfsstream": "*",
"mockery/mockery": "*",
"pestphp/pest": "*",
"php-parallel-lint/php-parallel-lint": "*",
"phpcompatibility/php-compatibility": "*",
"phpstan/phpstan-strict-rules": "*",
"phpunit/phpunit": "*",
"squizlabs/php_codesniffer": "dev-master",
"szepeviktor/phpstan-wordpress": "*",
"szepeviktor/phpcs-psr-12-neutron-hybrid-ruleset": "*",
"vimeo/psalm": "*"
},
"autoload": {
"psr-4": {
"AccessibleMinimalism\\": "src/"
}
},
"config": {
"preferred-install": {
"*": "dist"
},
"classmap-authoritative": true
},
"scripts": {
"phpstan": "php -d memory_limit=-1 ./vendor/bin/phpstan --configuration=conf/phpstan.neon analyse",
"phpcbf": "vendor/bin/phpcbf --standard=conf/phpcs.xml .",
"phpcs": "vendor/bin/phpcs -s --standard=conf/phpcs.xml .",
"pest": "vendor/bin/pest -c conf/phpunit.xml",
"coverage": "vendor/bin/pest --coverage",
"lint": "vendor/bin/parallel-lint --exclude vendor .",
"test": [
"composer validate --strict",
"@lint",
"@phpcs",
"@phpstan",
"@pest",
"@coverage"
],
"build": "/bin/sh tools/build_release.sh"
}
}