-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.54 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
{
"name": "zentlix/swagger-php",
"description": "Swagger-php integration package for Spiral Framework.",
"keywords": [
"spiral",
"swagger-php",
"api"
],
"homepage": "https://github.com/zentlix/swagger-php",
"license": "MIT",
"require": {
"php": "^8.1",
"spiral/boot": "^3.5",
"spiral/config": "^3.5",
"spiral/core": "^3.5",
"spiral/views": "^3.5",
"spiral/cache": "^3.5",
"spiral/http": "^3.5",
"zircote/swagger-php": "^4.5"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.5.27",
"friendsofphp/php-cs-fixer": "^3.8",
"spiral/testing": "^2.2.0",
"vimeo/psalm": "^4.30"
},
"autoload": {
"psr-4": {
"Spiral\\OpenApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\OpenApi\\Tests\\": "tests/src"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"psalm": "vendor/bin/psalm --config=psalm.xml ./src",
"cs": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -vvv --dry-run --using-cache=no"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"spiral/composer-publish-plugin": true
}
},
"extra": {
"spiral": {
"bootloaders": [
"Spiral\\OpenApi\\Bootloader\\SwaggerBootloader"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}