-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.19 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
{
"name": "openapi-tools/representation",
"description": "User friendly OpenAPI Spec representation",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"devizzent/cebe-php-openapi": "^1",
"openapi-tools/utils": "dev-main"
},
"require-dev": {
"wyrihaximus/test-utilities": "^5.6"
},
"autoload": {
"psr-4": {
"OpenAPITools\\Representation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenAPITools\\Tests\\Representation\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"wyrihaximus/composer-update-bin-autoload-path": true
},
"platform": {
"php": "8.2.13"
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}