forked from spiral/json-schema-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "context-hub/json-schema-generator",
"description": "Provides the ability to generate JSON schemas from Data Transfer Object (DTO) classes",
"keywords": [],
"homepage": "https://github.com/spiral/json-schema-generator",
"license": "MIT",
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "wolfy-j@spiralscout.com"
},
{
"name": "Pavel Buchnev (butschster)",
"email": "pavel.buchnev@spiralscout.com"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "alexey.gagarin@spiralscout.com"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "maksim.smakouz@spiralscout.com"
}
],
"require": {
"php": ">=8.3",
"symfony/property-info": "^6.0 | ^7.0 | ^8.0",
"phpstan/phpdoc-parser": "^2.1",
"phpdocumentor/reflection-docblock": "^5.6"
},
"require-dev": {
"spiral/code-style": "^2.2.2",
"phpunit/phpunit": "^10.2",
"rector/rector": "^2.0",
"vimeo/psalm": "^6.0"
},
"autoload": {
"psr-4": {
"Spiral\\JsonSchemaGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\JsonSchemaGenerator\\Tests\\": "tests"
}
},
"scripts": {
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"psalm": "vendor/bin/psalm --config=psalm.xml ./src",
"psalm:ci": "vendor/bin/psalm --config=psalm.xml ./src --output-format=github --shepherd --show-info=false --stats --threads=4 --no-cache",
"refactor": "rector process --config=rector.php",
"refactor:ci": "rector process --config=rector.php --dry-run --ansi",
"test": "vendor/bin/phpunit",
"test:cc": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-clover=.build/phpunit/logs/clover.xml --color=always"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}