Skip to content

Commit b815067

Browse files
authored
Merge pull request #1 from php-api-clients/proof-of-concept
Proof of Concept
2 parents a824c52 + c26b6ee commit b815067

File tree

7 files changed

+1166
-0
lines changed

7 files changed

+1166
-0
lines changed

composer.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "api-clients/openapi-client-generator",
3+
"description": "Generate a client based on an OpenAPI spec",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Cees-Jan Kiewiet",
8+
"email": "[email protected]"
9+
}
10+
],
11+
"require": {
12+
"php": "^7.4",
13+
"cebe/php-openapi": "^1.4",
14+
"jawira/case-converter": "^3.4",
15+
"twig/twig": "^3.0",
16+
"nikic/php-parser": "^4.8",
17+
"psr/http-message": "^1.0",
18+
"ringcentral/psr7": "^1.3"
19+
},
20+
"autoload": {
21+
"psr-4": {
22+
"ApiClients\\Tools\\OpenApiClientGenerator\\": "src/"
23+
}
24+
},
25+
"autoload-dev": {
26+
"psr-4": {
27+
"ApiClients\\Tests\\Tools\\OpenApiClientGenerator\\": "tests/"
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)