-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.52 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
{
"name": "phrozenbyte/phpunit-array-asserts",
"type": "library",
"description": "Provides various array-related PHPUnit assertions, primarily used for API testing.",
"keywords": [ "php", "phpunit", "phpunit-extension", "phpunit-assertions" ],
"license": "MIT",
"authors": [
{
"name": "Daniel Rudolf",
"homepage": "https://www.daniel-rudolf.de/"
}
],
"support": {
"docs": "https://github.com/PhrozenByte/phpunit-array-asserts",
"issues": "https://github.com/PhrozenByte/phpunit-array-asserts/issues",
"source": "https://github.com/PhrozenByte/phpunit-array-asserts"
},
"autoload": {
"psr-4": {
"PhrozenByte\\PHPUnitArrayAsserts\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PhrozenByte\\PHPUnitArrayAsserts\\Tests\\": "tests"
}
},
"require": {
"php": "^7.2 || ^8.0",
"phrozenbyte/phpunit-throwable-asserts": "^1.0",
"phplucidframe/console-table": "^1.2"
},
"conflict": {
"phpunit/phpunit": "<8.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"vimeo/psalm": "^4.5",
"psalm/plugin-phpunit": "^0.15.1",
"psalm/plugin-mockery": "^0.7.0",
"phpunit/phpunit": "^8",
"mockery/mockery": "^1.3",
"symfony/yaml": "^4.4",
"incompass/coverage": "^1.0"
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
}
}