-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.01 KB
/
Copy pathcomposer.json
File metadata and controls
38 lines (38 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
37
38
{
"name": "pincher2012/rector-swagger-php",
"description": "Replace openapi annotations to attributes",
"type": "rector-extension",
"keywords": ["rector", "openapi", "swagger", "annotations", "attributes"],
"require": {
"php": "^8.2"
},
"require-dev": {
"rector/rector": "^2.3.5",
"phpunit/phpunit": "^11.5",
"friendsofphp/php-cs-fixer": "^3.93.1",
"phpstan/phpstan": "^2.1.38"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Rector\\OpenApi\\": ["src/", "rules/"]
}
},
"autoload-dev": {
"psr-4": {
"Rector\\OpenApi\\Tests\\": ["tests/", "rules-tests/"]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"format": "vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan analyse"
},
"authors": [
{
"name": "Aleksandr Busygin",
"email": "pincher2012@yandex.ru"
}
],
"minimum-stability": "stable"
}