This repository has been archived by the owner on Jul 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
76 lines (76 loc) · 2.62 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
{
"name": "p1ho/accessibility-checker",
"description": "Accessibility Testing Suite on raw HTML extracted from Content Management Systems",
"type": "library",
"keywords": [
"accessibility",
"checker",
"validate",
"wcag",
"color-contrast",
"heading-structure",
"image-accessibility",
"link-accessibility",
"html",
"cms",
"reports"
],
"homepage": "https://github.com/p1ho/accessibility-checker",
"readme": "./README.md",
"require": {
"stefangabos/zebra_curl": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^7",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpcov": "^5.0"
},
"license": "MIT",
"authors": [
{
"name": "Pokuan Ho",
"email": "[email protected]",
"homepage": "https://www.github.io/p1ho",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"P1ho\\AccessibilityChecker\\": "/src"
},
"classmap": [
"src/ColorContrast/Checker.php",
"src/ColorContrast/Calculator.php",
"src/HeadingStructure/Checker.php",
"src/ImageAccessibility/Checker.php",
"src/LinkAccessibility/Base.php",
"src/LinkAccessibility/Checker.php",
"src/LinkAccessibility/LinkQuality/Checker.php",
"src/LinkAccessibility/LinkText/Checker.php"
]
},
"autoload-dev": {
"psr-4": {
"P1ho\\AccessibilityChecker\\Tests\\": "/tests"
},
"classmap": [
"tests/ColorContrast/CheckerTest.php",
"tests/ColorContrast/CalculatorTest.php",
"tests/HeadingStructure/CheckerTest.php",
"tests/ImageAccessibility/CheckerTest.php",
"tests/LinkAccessibility/CheckerTest.php",
"tests/LinkAccessibility/LinkQuality/CheckerTest.php",
"tests/LinkAccessibility/LinkText/CheckerTest.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit tests --verbose --coverage-text",
"test-win": "vendor\\bin\\phpunit tests --verbose --coverage-text",
"style-fix-download": "curl -L https://cs.symfony.com/download/php-cs-fixer-v2.phar -o php-cs-fixer",
"style-fix": "php php-cs-fixer fix ./",
"phpcov-merge": "vendor/bin/phpcov merge --clover build/logs/clover.xml build/cov",
"phpcov-merge-win": "vendor\\bin\\phpcov merge --clover build/logs/clover.xml build/cov",
"coveralls": "vendor/bin/php-coveralls",
"coveralls-win": "vendor\\bin\\php-coveralls"
}
}