forked from goldspecdigital/oooas
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.32 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.32 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "goldspecdigital/oooas",
"description": "An object oriented approach to generating OpenAPI specs, implemented in PHP.",
"type": "library",
"license": "MIT",
"keywords": ["php", "oas", "openapi", "swagger"],
"homepage": "https://github.com/goldspecdigital/oooas",
"authors": [
{
"name": "Jan-Sverre Riksfjord",
"email": "jansverre@uffe.no"
},
{
"name": "Matthew Inamdar",
"email": "matt@goldspecdigital.com"
},
{
"name": "Vladimir Yuldashev",
"email": "vladimir.yuldashev@gmail.com"
}
],
"autoload": {
"psr-4": {
"GoldSpecDigital\\ObjectOrientedOAS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GoldSpecDigital\\ObjectOrientedOAS\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.3.2",
"friendsofphp/php-cs-fixer": "^3",
"justinrainbow/json-schema": "^5.2"
},
"suggest": {
"justinrainbow/json-schema": "Required to perform validation (^5.2)"
},
"scripts": {
"test": [
"@test:style",
"@test:unit"
],
"test:style": "@fix:style --dry-run",
"test:unit": "@php vendor/bin/phpunit",
"fix:style": "@php vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --diff --verbose"
}
}