forked from PhrozenByte/phpunit-array-asserts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.52 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.52 KB
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": "^8.4",
"phrozenbyte/phpunit-throwable-asserts": "dev-master",
"phplucidframe/console-table": "^1.2"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.2",
"vimeo/psalm": "^6.14",
"psalm/plugin-phpunit": "^0.19.2",
"phpunit/phpunit": "^12.0",
"symfony/yaml": "^8.0"
},
"repositories": {
"assert": {
"type": "git",
"url": "https://github.com/Lappihuan/phpunit-throwable-asserts"
}
},
"scripts": {
"test": "phpunit",
"lint": "parallel-lint src tests",
"psalm": "psalm"
}
}