-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
74 lines (74 loc) · 2.18 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
{
"name": "stevegrunwell/phpunit-markup-assertions",
"description": "Assertions for PHPUnit to verify the presence or state of elements within markup",
"keywords": ["phpunit", "testing", "markup", "dom"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Steve Grunwell",
"homepage": "https://stevegrunwell.com"
}
],
"support": {
"issues": "https://github.com/stevegrunwell/phpunit-markup-assertions/issues",
"source": "https://github.com/stevegrunwell/phpunit-markup-assertions/"
},
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"symfony/css-selector": "^3.4|^4.4|^5.4|^6.0",
"symfony/dom-crawler": "^3.4|^4.4|^5.4|^6.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7",
"symfony/phpunit-bridge": "^5.2 || ^6.2 || ^7.0"
},
"autoload": {
"psr-4": {
"SteveGrunwell\\PHPUnit_Markup_Assertions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"coding-standards": [
"phpcs"
],
"static-analysis": [
"phpstan analyse"
],
"test": [
"simple-phpunit --testdox"
],
"test-coverage": [
"XDEBUG_MODE=coverage ./vendor/bin/simple-phpunit --coverage-html=tests/coverage --colors=always"
]
},
"scripts-descriptions": {
"coding-standards": "Check coding standards.",
"static-analysis": "Run static code analysis",
"test": "Run all test suites.",
"test-coverage": "Generate code coverage reports in tests/coverage."
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"archive": {
"exclude": [
"_config.yml",
".*",
"phpunit.*",
"tests"
]
}
}