-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
37 lines (37 loc) · 1.23 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
{
"name": "joedolson/wp-accessibility",
"description": "WP Accessibility WordPress Plugin",
"keywords": ["wordpress", "plugin", "theme", "accessibility"],
"homepage": "https://joedolson.com",
"license": "GPL-2.0-or-later",
"authors": [{
"name": "Joe Dolson",
"email": "plugins@joedolson.com",
"homepage": "https://joedolson.com"
}],
"type": "wordpress-plugin",
"require-dev": {
"phpcompatibility/php-compatibility": "^9.3",
"phpunit/phpunit": "^8.5",
"wp-coding-standards/wpcs": "^3.0.0",
"wp-phpunit/wp-phpunit": "^5.8",
"yoast/phpunit-polyfills": "^1.0",
"szepeviktor/phpstan-wordpress": "^1.1",
"phpstan/extension-installer": "^1.1"
},
"require": {
"composer/installers": "~1.0"
},
"scripts": {
"format": "phpcbf --standard=phpcs.xml.dist --report-summary --report-source",
"lint": "phpcs --standard=phpcs.xml.dist",
"test": "phpunit -c phpunit.xml.dist --verbose"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}