-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
88 lines (88 loc) · 2.87 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
{
"name": "equalizedigital/accesibility-checker",
"description": "Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.",
"keywords": [
"accessibility",
"accessible",
"wcag"
],
"homepage": "https://equalizedigital.com/accessibility-checker/",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Equalize Digital",
"homepage": "https://equalizedigital.com"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"composer/installers": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/equalizedigital/accessibility-checker-wp-env"
},
{
"type": "vcs",
"url": "https://github.com/equalizedigital/textstatistics"
}
],
"require-dev": {
"automattic/vipwpcs": "^3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"phpcompatibility/php-compatibility": "*",
"php-parallel-lint/php-parallel-lint": "^1.3",
"yoast/phpunit-polyfills": "^1.1.0",
"yoast/wp-test-utils": "^1.2",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^3.0",
"equalizedigital/accessibility-checker-wp-env": "*",
"doctrine/instantiator": "^1.3.1",
"wp-phpunit/wp-phpunit": "*",
"phpstan/phpstan": "^1.11",
"phpstan/extension-installer": "^1.4",
"szepeviktor/phpstan-wordpress": "^1.3"
},
"require": {
"davechild/textstatistics": "dev-master",
"php": ">=7.4",
"composer/installers": "^1.12.0"
},
"autoload": {
"classmap": [
"admin/",
"includes/classes/",
"includes/deprecated/"
],
"psr-4": {
"EqualizeDigital\\AccessibilityChecker\\": "includes/classes/",
"EqualizeDigital\\AccessibilityChecker\\Admin\\": "admin/"
}
},
"autoload-dev": {
"classmap": [],
"psr-4": {
"EqualizeDigital\\AccessibilityChecker\\Tests\\TestHelpers\\": "tests/phpunit/TestHelpers/"
}
},
"scripts": {
"lint": [
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --show-deprecated --exclude vendor --exclude node_modules --exclude .git"
],
"check-cs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --runtime-set testVersion 7.4-"
],
"fix-cs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf"
],
"test": [
"@php ./vendor/phpunit/phpunit/phpunit --testdox"
]
}
}