Skip to content

Commit 84687d8

Browse files
committed
Initial commit and generated client code
0 parents  commit 84687d8

File tree

267 files changed

+22221
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

267 files changed

+22221
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor/
2+
.idea

.jane-openapi

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
return [
4+
'openapi-file' => 'https://api.combell.com/v2/documentation/swagger-v2.json',
5+
'namespace' => 'Combell\Client',
6+
'directory' => __DIR__ . '/src/Client',
7+
];

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Combell OpenAPI Client
2+
3+
This client is generated based on Combell's own OpenAPI spec, available at https://api.combell.com/v2/documentation/swagger-v2.json, using the JanePHP library.
4+

composer.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "alisqi/combell-openapi-client",
3+
"description": "A PHP client based on Combell's own OpenAPI spec generated with JanePHP.",
4+
"type": "library",
5+
"require": {
6+
"jane-php/open-api-runtime": "^6.3"
7+
},
8+
"require-dev": {
9+
"jane-php/open-api-3": "^6.3",
10+
"friendsofphp/php-cs-fixer": "^2.18"
11+
},
12+
"license": "MIT",
13+
"autoload": {
14+
"classmap": [
15+
"src/"
16+
]
17+
}
18+
}

0 commit comments

Comments
 (0)