-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
73 lines (73 loc) · 1.92 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
{
"name": "osteel/openapi-httpfoundation-testing",
"type": "library",
"description": "Validate HttpFoundation requests and responses against OpenAPI (3+) definitions",
"keywords": [
"openapi",
"httpfoundation",
"symfony",
"laravel",
"http",
"validation",
"testing",
"api"
],
"homepage": "https://github.com/osteel/openapi-httpfoundation-testing",
"license": "MIT",
"authors": [
{
"name": "Yannick Chenot",
"email": "yannick@yellowraincoat.co.uk",
"homepage": "https://github.com/osteel",
"role": "Maintainer"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"league/openapi-psr7-validator": "^0.22",
"nyholm/psr7": "^1.3.1",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/http-message": "^1.0 || ^2.0",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"symfony/cache": "^5.0.9 || ^6.0 || ^7.0",
"symfony/http-foundation": "^5.0.9 || ^6.0 || ^7.0",
"symfony/psr-http-message-bridge": "^2.0 || ^6.0 || ^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.17",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"rector/rector": "^0.17.1"
},
"autoload": {
"psr-4": {
"Osteel\\OpenApi\\Testing\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Osteel\\OpenApi\\Testing\\Tests\\": "tests"
}
},
"scripts": {
"fix": "php-cs-fixer fix -v",
"test": "phpunit",
"type": "phpstan",
"all": [
"@fix",
"@type",
"@test"
],
"refactor": "rector process"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}