Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
iamgergo committed Dec 4, 2023
1 parent d79679c commit 7da22b4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
1 change: 1 addition & 0 deletions .openapi-generator-ignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/.travis.yml
/git_push.sh
/composer.json
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Should also work with PHP 8.0.
## Getting Started

```php
$client = new Cone\Billing\Billingo('API_KEY');
$client = new Cone\Billingo\Billingo('API_KEY');

// Config
$client->config();
Expand Down
26 changes: 16 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{
"description": "This is a Billingo API v3 documentation. Our API based on REST software architectural style. API has resource-oriented URLs, accepts JSON-encoded request bodies and returns JSON-encoded responses. To use this API you have to generate a new API key on our [site](https://app.billingo.hu/api-key). After that, you can test your API key on this page.",
"name": "conedevelopment/billingo",
"description": "The Billingo PHP SDK.",
"keywords": [
"openapitools",
"openapi-generator",
"openapi",
"php",
"sdk",
"rest",
"api"
],
"homepage": "https://openapi-generator.tech",
"license": "unlicense",
"homepage": "https://conedevelopment.com",
"license": "MIT",
"authors": [
{
"name": "OpenAPI-Generator contributors",
"homepage": "https://openapi-generator.tech"
"name": "Cone Development",
"homepage": "https://conedevelopment.com"
},
{
"name": "Szépe Viktor",
"homepage": "https://szepe.net"
}
],
"require": {
Expand All @@ -30,9 +32,13 @@
"friendsofphp/php-cs-fixer": "^3.5"
},
"autoload": {
"psr-4": { "Cone\\Billingo\\" : "lib/" }
"psr-4": {
"Cone\\Billingo\\" : "lib/"
}
},
"autoload-dev": {
"psr-4": { "Cone\\Billingo\\Test\\" : "test/" }
"psr-4": {
"Cone\\Billingo\\Test\\" : "test/"
}
}
}

0 comments on commit 7da22b4

Please sign in to comment.