-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 1.83 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
{
"name": "bapcltd/markup",
"description": "Extensions to signpostmarv/daft-markup",
"license": "proprietary",
"authors": [
{
"name": "Marv Blackwell",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BAPC\\Html\\": [
"./src/"
]
}
},
"autoload-dev": {
"psr-4": {
"BAPC\\Html\\": [
"./tests/"
],
"SignpostMarv\\DaftMarkup\\Tests\\": [
"./vendor/signpostmarv/daft-markup/Tests/"
]
}
},
"config": {
"classmap-authoritative": true,
"sort-packages": true
},
"conflict": {
"vimeo/psalm": "<3.15"
},
"suggest": {
"vimeo/psalm": "Useful for static analysis to reduce runtime type checks etc."
},
"scripts": {
"coverage": [
"phpunit --prepend ./xdebug-filter.phpunit.php -vvvv --testdox --coverage-html ./coverage/phpunit/"
],
"coverage-clover": [
"phpunit --prepend ./xdebug-filter.phpunit.php -vvvv --coverage-clover ./coverage/phpunit.clover.xml"
],
"tests": [
"phpunit --prepend ./xdebug-filter.phpunit.php --no-coverage --stop-on-error --stop-on-warning --stop-on-failure",
"@static-analysis"
],
"static-analysis": [
"psalm --show-info=false --shepherd",
"psalm --taint-analysis",
"phpcpd src",
"phpmnd ./ --exclude=./coverage/ --exclude=./vendor/ --non-zero-exit-on-violation --hint",
"php-cs-fixer fix --verbose --diff-format=udiff --dry-run",
"composer-require-checker check ./composer.json"
]
},
"require": {
"php": "^7.4",
"ext-dom": "*",
"ext-mbstring": "*",
"masterminds/html5": "^2.7",
"signpostmarv/daft-markup": "^3.3"
},
"require-dev": {
"bapcltd/php-cs-fixer-config": "^1.0",
"maglnet/composer-require-checker": "^2.0",
"phpunit/phpunit": "^8.5",
"povils/phpmnd": "^2.3",
"psalm/plugin-phpunit": "^0.12.1",
"roave/security-advisories": "dev-master",
"sebastian/phpcpd": "^4.1",
"vimeo/psalm": "^3.15"
}
}