-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
91 lines (91 loc) · 2.47 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "mohammad-alavi/laravel-openapi",
"type": "library",
"description": "Generate OpenAPI Specification for Laravel Applications",
"keywords": [
"laravel",
"openapi",
"api",
"documentation",
"docs",
"rest",
"swagger"
],
"license": "MIT",
"homepage": "https://mohammad-alavi.github.io/laravel-openapi/",
"support": {
"issues": "https://github.com/Mohammad-Alavi/issues",
"source": "https://github.com/Mohammad-Alavi"
},
"authors": [
{
"name": "Mohammad Alavi",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"doctrine/dbal": "^2.6|^3.0",
"laravel/framework": "^11.0",
"roave/security-advisories": "dev-latest"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8.0",
"jetbrains/phpstorm-attributes": "^1.0",
"justinrainbow/json-schema": "^6.0",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^3.2",
"pestphp/pest-plugin-faker": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"pestphp/pest-plugin-type-coverage": "^3.0",
"phpmd/phpmd": "@stable",
"rector/rector": "^1.2",
"slevomat/coding-standard": "^8.15",
"squizlabs/php_codesniffer": "*"
},
"autoload": {
"psr-4": {
"MohammadAlavi\\LaravelOpenApi\\": "src/",
"MohammadAlavi\\ObjectOrientedOAS\\": "src/oooas/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"github-protocols": [
"https"
],
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"MohammadAlavi\\LaravelOpenApi\\OpenApiServiceProvider"
]
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"cs-fix": [
"php ./vendor/bin/php-cs-fixer fix"
],
"cs": [
"php ./vendor/bin/phpcbf --standard=phpcs.xml"
],
"rector": [
"php ./vendor/bin/rector"
]
}
}