-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
49 lines (49 loc) · 1.23 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
{
"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": "Matthew Inamdar",
"email": "[email protected]"
},
{
"name": "Vladimir Yuldashev",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"GoldSpecDigital\\ObjectOrientedOAS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GoldSpecDigital\\ObjectOrientedOAS\\Tests\\": "tests/"
}
},
"require": {
"php": ">=7.1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": ">=7.3",
"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"
}
}