-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.18 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
{
"name": "temirkhann/openapi-validator-bundle",
"description": "An OpenAPI specification validator for a symfony application",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"TemirkhanN\\OpenapiValidatorBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\TemirkhanN\\OpenapiValidatorBundle\\": "tests/"
}
},
"authors": [
{
"name": "Temirkhan",
"homepage": "https://temirkhan.nasukhov.me"
}
],
"require": {
"php": "^7.4|~8.0|~8.1",
"symfony/dependency-injection": "^5.4",
"symfony/http-kernel": "^5.4",
"league/openapi-psr7-validator": "^0.18.0",
"symfony/event-dispatcher": "^5.4",
"symfony/psr-http-message-bridge": "^2.1",
"nyholm/psr7": "^1.5"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.7",
"squizlabs/php_codesniffer": "^3.7",
"symfony/framework-bundle": "^5.4",
"free2er/coding-standard": "^1.1",
"phpstan/phpstan-phpunit": "^1.1"
}
}