-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.39 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
{
"name": "marcin-orlowski/phpunit-extra-asserts",
"description": "Extra asserts and helpers to make your unit testing easier.",
"homepage": "https://github.com/MarcinOrlowski/phpunit-extra-asserts",
"version": "5.3.0",
"keywords": [
"helper",
"tests",
"php8",
"phpunit",
"unittests",
"asserts"
],
"license": "MIT",
"authors": [
{
"name": "Marcin Orlowski",
"homepage": "https://MarcinOrlowski.com/"
}
],
"support": {
"source": "https://github.com/MarcinOrlowski/phpunit-extra-asserts/",
"issues": "https://github.com/MarcinOrlowski/phpunit-extra-asserts/issues"
},
"autoload": {
"psr-4": {
"MarcinOrlowski\\PhpunitExtraAsserts\\": "src/"
}
},
"require": {
"php": "^8.0",
"marcin-orlowski/type-asserts": "^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.26",
"phpunit/php-code-coverage": "^9.0",
"phpstan/phpstan": "^1.9.1"
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit -c tests/phpunit.xml"
],
"lint": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpstan analyse --no-progress --no-interaction -c phpstan.neon.dist"
],
"mdlint": [
"Composer\\Config::disableProcessTimeout",
"markdownlint -c .markdownlint.yaml.dist --ignore vendor --ignore LICENSE.md docs **/*.md README.md"
]
}
}