-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.56 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.56 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
54
{
"name": "gpht/openapi-symfony-validator",
"description": "OpenAPI validation library for Symfony applications with PHPUnit integration",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Sergei Baikin",
"email": "sergei.baikin@fotograf.de"
}
],
"require": {
"php": "^8.4",
"gpht/openapi-psr7-validator": "^0.23",
"nyholm/psr7": "^1.8",
"symfony/psr-http-message-bridge": "^6.0|^7.0",
"symfony/yaml": "^6.0|^7.0",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/browser-kit": "^6.0|^7.0"
},
"require-dev": {
"carthage-software/mago": "1.0.0-beta.15",
"phpunit/phpunit": "^10.0|^11.0",
"vimeo/psalm": "^7.0.0-beta11"
},
"autoload": {
"psr-4": {
"Gpht\\OpenapiSymfonyValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Gpht\\OpenapiSymfonyValidator\\Tests\\": "tests/"
}
},
"scripts": {
"analyze": "./vendor/bin/mago analyze",
"format": "./vendor/bin/mago format",
"format-check": "./vendor/bin/mago format --check",
"lint": "./vendor/bin/mago lint",
"psalm": "psalm",
"psalm-baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": "phpunit"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"carthage-software/mago": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}