-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.22 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
{
"name": "djairhogeuens/openapi-php",
"version": "1.0.0-beta4",
"description": "PHP implementation of the OpenAPI Specification using PHP attributes",
"type": "library",
"homepage": "https://github.com/djairhogeuens/openapi-php",
"license": "Apache-2.0",
"authors": [
{
"name": "Djairho Geuens",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1"
},
"require-dev": {
"vimeo/psalm": "^4.1",
"phpstan/phpstan": "^1.3.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"scripts": {
"psalm": "psalm --no-diff",
"stan": "phpstan --memory-limit=1G",
"cs-check": "php-cs-fixer fix --dry-run",
"cs-fix": "php-cs-fixer fix",
"lint": [
"@psalm",
"@stan",
"@cs-check"
],
"generate-docs": "docker run --rm -v $(pwd):/data phpdoc/phpdoc:latest -d ./src -t ./docs --setting=graphs.enabled=true"
},
"autoload": {
"psr-4": {
"OpenApi\\Attributes\\": "src/OpenApi/Attributes"
}
},
"autoload-dev": {
"psr-4": {
"OpenApi\\Example\\": "example/OpenApi/Example"
}
}
}