-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
43 lines (43 loc) · 1.01 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
38
39
40
41
42
43
{
"name": "psx/schema",
"description": "Parse and generate data schema formats",
"keywords": ["schema", "json", "typeschema", "generator"],
"homepage": "https://phpsx.org",
"license": "Apache-2.0",
"authors": [
{
"name": "Christoph Kappestein",
"email": "[email protected]",
"homepage": "https://chrisk.app"
}
],
"require": {
"php": ">=8.1",
"nikic/php-parser": "^4.0|^5.0",
"psr/cache": "^1.0|^2.0|^3.0",
"psx/datetime": "^3.0",
"psx/http": "^4.0",
"psx/json": "^3.0",
"psx/record": "^3.0",
"psx/uri": "^3.0",
"psx/validate": "^2.0",
"symfony/console": "^5.0|^6.0|^7.0",
"symfony/cache": "^5.0|^6.0|^7.0",
"phpdocumentor/type-resolver": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"symfony/yaml": "^5.0|^6.0|^7.0",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"PSX\\Schema\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PSX\\Schema\\Tests\\": "tests/"
}
}
}