-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 1.01 KB
/
composer.json
File metadata and controls
36 lines (35 loc) · 1.01 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
{
"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": "enno.woortmann@web.de"
}
],
"require": {
"wol-soft/php-json-schema-model-generator-production": "dev-master",
"wol-soft/php-micro-template": "^1.10.2",
"php": ">=8.4",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"rector/rector": "^1.2",
"squizlabs/php_codesniffer": "^4.0"
},
"autoload": {
"psr-4": {
"PHPModelGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPModelGenerator\\Tests\\": "tests",
"ManualSchema\\": "tests/manual/result"
}
}
}