-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
37 lines (36 loc) · 1.03 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
{
"name": "wol-soft/php-json-schema-model-generator",
"homepage": "https://github.com/wol-soft/php-json-schema-model-generator",
"description": "Creates (immutable) PHP model classes from JSON-Schema files including all validation rules as PHP code",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Enno Woortmann",
"email": "[email protected]"
}
],
"require": {
"symfony/polyfill-php81": "^1.28",
"wol-soft/php-json-schema-model-generator-production": "^0.19.0",
"wol-soft/php-micro-template": "^1.9.0",
"php": ">=8.0",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": {
"PHPModelGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPModelGenerator\\Tests\\": "tests",
"ManualSchema\\": "tests/manual/result"
}
}
}