composer.json
{
"name": "helmich/phpunit-json-assert",
"description": "PHPUnit assertions for JSON documents",
"license": "MIT",
"authors": [
{
"name": "Martin Helmich",
"email": "m.helmich@mittwald.de"
}
],
"require": {
"php": "^8.0",
"softcreatr/jsonpath": "^0.8",
"justinrainbow/json-schema": "^5.0"
},
"conflict": {
"phpunit/phpunit": "<8.0 || >= 12.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"autoload": {
"psr-4": {
"Helmich\\JsonAssert\\": "src/"
}
},
"autoload-dev": {
"files": [
"src/Functions.php"
]
},
"config": {
"sort-packages": true
}
}