-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
36 lines (36 loc) · 979 Bytes
/
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
{
"name": "estahn/phpunit-json-assertions",
"type": "library",
"description": "JSON assertions for PHPUnit (including JSON Schema)",
"keywords": ["json", "phpunit", "schema"],
"homepage": "https://github.com/estahn/phpunit-json-assertions",
"license": "MIT",
"authors": [
{
"name": "Enrico Stahn",
"email": "enrico.stahn@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.4|^8.0",
"justinrainbow/json-schema": "^5.0",
"mtdowling/jmespath.php": "^2.3",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9",
"codacy/coverage": "dev-master",
"symfony/http-foundation": "^2.8|^3.0|^5.0"
},
"autoload": {
"psr-4": {
"EnricoStahn\\JsonAssert\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EnricoStahn\\JsonAssert\\Tests\\": "tests/"
}
}
}