composer.json
{
"name": "wol-soft/php-json-schema-model-generator-production",
"homepage": "https://github.com/wol-soft/php-json-schema-model-generator-production",
"description": "Provides the production code required to use php-json-schema-model-generator as dev dependency",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Enno Woortmann",
"email": "enno.woortmann@web.de"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"PHPModelGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPModelGenerator\\Tests\\": "tests"
}
}
}