-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
83 lines (83 loc) · 2.55 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
74
75
76
77
78
79
80
81
82
83
{
"name": "api-clients/openapi-client-generator",
"description": "Generate a client based on an OpenAPI spec",
"license": "MIT",
"authors": [
{
"name": "Cees-Jan Kiewiet",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"api-clients/contracts": "^0.1",
"api-clients/github": "^0.2@dev",
"api-clients/openapi-client-utils": "dev-main",
"ckr/arraymerger": "^3.0",
"codeinc/http-reason-phrase-lookup": "^1.0",
"delight-im/random": "^1.0",
"devizzent/cebe-php-openapi": "^1",
"eventsauce/object-hydrator": "^1.2",
"jawira/case-converter": "^3.5",
"kwn/number-to-words": "^2.6",
"league/openapi-psr7-validator": "^0.21",
"league/uri": "^6.8 || ^7.3",
"nikic/php-parser": "^4.15",
"nunomaduro/termwind": "^1.15",
"ondram/ci-detector": "^4.1",
"phpstan/phpdoc-parser": "^1.22",
"pointybeard/reverse-regex": "1.0.0.3",
"psr/http-message": "^1.1 || ^2 || ^3",
"react/async": "^4.0",
"react/http": "^1.8",
"reactivex/rxphp": "^2.0",
"ringcentral/psr7": "^1.3",
"symfony/yaml": "^6.0",
"twig/twig": "^3.5",
"wyrihaximus/async-test-utilities": "^7.0",
"wyrihaximus/composer-update-bin-autoload-path": "^1",
"wyrihaximus/react-awaitable-observable": "^1.0",
"wyrihaximus/simple-twig": "^2.1",
"wyrihaximus/subsplit-tools": "dev-main"
},
"autoload": {
"psr-4": {
"ApiClients\\Client\\Github\\": "generated/",
"ApiClients\\Tools\\OpenApiClientGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiClients\\Tests\\Tools\\OpenApiClientGenerator\\": "tests/unit/"
}
},
"bin": [
"bin/openapi-client-generator"
],
"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"
}
},
"extra": {
"wyrihaximus": {
"bin-autoload-path-update": [
"bin/openapi-client-generator"
]
}
},
"scripts": {
"post-install-cmd": [
"composer normalize"
],
"post-update-cmd": [
"composer normalize"
]
}
}