-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.41 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.41 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
55
{
"name": "lts/strict-openapi-validator",
"description": "High-performance, strict OpenAPI validator for PHP 8.4+ with LLM-optimized error output",
"type": "library",
"license": "MIT",
"keywords": [
"openapi",
"validator",
"api",
"strict",
"php84",
"llm",
"high-performance"
],
"authors": [
{
"name": "LongTermSupport",
"homepage": "https://github.com/LongTermSupport"
}
],
"require": {
"php": "^8.4",
"symfony/http-foundation": "^6.4 || ^7.0 || ^8.0",
"symfony/yaml": "^6.4 || ^7.0 || ^8.0",
"thecodingmachine/safe": "^3.3"
},
"require-dev": {
"lts/php-qa-ci": "dev-php8.4"
},
"autoload": {
"psr-4": {
"LongTermSupport\\StrictOpenApiValidator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LongTermSupport\\StrictOpenApiValidator\\Tests\\": "tests/",
"QaConfig\\": [
"qaConfig/"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist",
"allow-plugins": {
"phpstan/extension-installer": true,
"lts/php-qa-ci": true,
"ergebnis/composer-normalize": true
}
}
}