forked from martin-helmich/php-schema2class
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.64 KB
/
Copy pathcomposer.json
File metadata and controls
67 lines (67 loc) · 1.64 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "helmich/schema2class",
"description": "Build PHP classes from JSON schema definitions",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "Martin Helmich",
"email": "martin@helmich.me"
}
],
"scripts": {
"analyze": "phpstan",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"require": {
"php": "^8.2",
"symfony/console": "~3.0|~4.0|~5.0|~6.0|~7.0",
"symfony/yaml": "~3.0|~4.0|~5.0|~6.0|~7.0",
"justinrainbow/json-schema": "^6.6",
"ext-json": "*",
"composer/semver": "^3.0",
"laminas/laminas-code": "^4.12",
"nikic/php-parser": "^5.0",
"voku/portable-ascii": "^2.0",
"symfony/process": "^7.3"
},
"autoload": {
"psr-4": {
"Helmich\\Schema2Class\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Helmich\\Schema2Class\\": "tests/"
}
},
"bin": [
"bin/s2c"
],
"require-dev": {
"phpunit/phpunit": "^12.0",
"vimeo/psalm": "^6.5",
"phpstan/phpstan": "^2.1.2",
"phpspec/prophecy": "^1.17",
"phpspec/prophecy-phpunit": "^2.0",
"cweagans/composer-patches": "^1.7",
"robiningelbrecht/phpunit-pretty-print": "^1.4"
},
"extra": {
"patches": {
"laminas/laminas-code": {
"Fix until https://github.com/laminas/laminas-code/pull/208 released": "vendor-patches/laminas-code.patch"
}
}
},
"archive": {
"exclude": [
"/examples"
]
}
}