{"id":33963102,"url":"https://github.com/ubill-ge/sdk-php","last_synced_at":"2026-03-17T22:40:09.543Z","repository":{"id":296912985,"uuid":"994963874","full_name":"ubill-ge/sdk-php","owner":"ubill-ge","description":"PHP SDK for working with the UBill API","archived":false,"fork":false,"pushed_at":"2025-06-27T14:21:05.000Z","size":73,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-27T15:36:18.960Z","etag":null,"topics":["api","openapi","openapi-generator","openapitools","php","rest","sdk","sms","ubill"],"latest_commit_sha":null,"homepage":"https://packagist.org/packages/ubill/sdk","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ubill-ge.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-02T18:54:05.000Z","updated_at":"2025-06-12T21:48:59.000Z","dependencies_parsed_at":"2025-06-03T10:10:58.721Z","dependency_job_id":"7bb09fbb-d600-46ea-b0e0-34b937d8c3c3","html_url":"https://github.com/ubill-ge/sdk-php","commit_stats":null,"previous_names":["ubill-ge/sdk-php"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/ubill-ge/sdk-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubill-ge%2Fsdk-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubill-ge%2Fsdk-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubill-ge%2Fsdk-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubill-ge%2Fsdk-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ubill-ge","download_url":"https://codeload.github.com/ubill-ge/sdk-php/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ubill-ge%2Fsdk-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30633564,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-17T22:38:22.569Z","status":"ssl_error","status_checked_at":"2026-03-17T22:38:11.804Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","openapi","openapi-generator","openapitools","php","rest","sdk","sms","ubill"],"created_at":"2025-12-12T22:24:50.647Z","updated_at":"2026-03-17T22:40:09.527Z","avatar_url":"https://github.com/ubill-ge.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sdk-php\n\nUBill API - provides programmatic access to our resources.\nYou will be able to integrate our service into your system and communicate with clients easily.\n\nFor more information, please visit [https://ubill.ge/](https://ubill.ge/).\n\n## Installation \u0026 Usage\n\n### Requirements\n\nPHP 8.1 and later.\n\n### Composer\n\nTo install the package via [Composer](https://getcomposer.org/), run the following command:\n\n```bash\ncomposer require ubill/sdk\n```\n\n## Getting Started\n\nPlease follow the [installation procedure](#installation--usage) and then run the following:\n\n```php\n\u003c?php\nrequire_once(__DIR__ . '/vendor/autoload.php');\n\n\n\n// Configure API key authorization: apiKey\n$config = UBill\\Sdk\\Configuration::getDefaultConfiguration()-\u003esetApiKey('key', 'YOUR_API_KEY');\n// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed\n// $config = UBill\\Sdk\\Configuration::getDefaultConfiguration()-\u003esetApiKeyPrefix('key', 'Bearer');\n\n\n$apiInstance = new UBill\\Sdk\\Api\\SmsApi(\n    // If you want use custom http client, pass your client which implements `GuzzleHttp\\ClientInterface`.\n    // This is optional, `GuzzleHttp\\Client` will be used as default.\n    new GuzzleHttp\\Client(),\n    $config\n);\n$createBrandNameRequest = new \\UBill\\Sdk\\Model\\CreateBrandNameRequest(); // \\UBill\\Sdk\\Model\\CreateBrandNameRequest | Brand Name payload to create\n\ntry {\n    $result = $apiInstance-\u003ecreateBrandName($createBrandNameRequest);\n    print_r($result);\n} catch (Exception $e) {\n    echo 'Exception when calling SmsApi-\u003ecreateBrandName: ', $e-\u003egetMessage(), PHP_EOL;\n}\n\n```\n\n## API Endpoints\n\nAll URIs are relative to *https://api.ubill.dev/v1*\n\nClass | Method | HTTP request | Description\n------------ | ------------- | ------------- | -------------\n*SmsApi* | [**createBrandName**](docs/Api/SmsApi.md#createbrandname) | **POST** /sms/brandNameCreate | Create Brand Name\n*SmsApi* | [**getDeliveryReport**](docs/Api/SmsApi.md#getdeliveryreport) | **GET** /sms/report/{smsID} | Get Delivery Report\n*SmsApi* | [**getSMSBalance**](docs/Api/SmsApi.md#getsmsbalance) | **GET** /sms/balance | Get SMS Balance\n*SmsApi* | [**listBrandNames**](docs/Api/SmsApi.md#listbrandnames) | **GET** /sms/brandNames | Get All Brand Names\n*SmsApi* | [**sendSMS**](docs/Api/SmsApi.md#sendsms) | **POST** /sms/send | Send SMS\n\n## Models\n\n- [BaseResponse](docs/Model/BaseResponse.md)\n- [BrandName](docs/Model/BrandName.md)\n- [BrandNamesResponse](docs/Model/BrandNamesResponse.md)\n- [CreateBrandNameRequest](docs/Model/CreateBrandNameRequest.md)\n- [CreateBrandNameResponse](docs/Model/CreateBrandNameResponse.md)\n- [DeliveryReportItem](docs/Model/DeliveryReportItem.md)\n- [DeliveryReportResponse](docs/Model/DeliveryReportResponse.md)\n- [SMSBalanceResponse](docs/Model/SMSBalanceResponse.md)\n- [SendSMSRequest](docs/Model/SendSMSRequest.md)\n- [SendSMSResponse](docs/Model/SendSMSResponse.md)\n\n## Authorization\n\nAuthentication schemes defined for the API:\n### apiKey\n\n- **Type**: API key\n- **API key parameter name**: key\n- **Location**: URL query string\n\n\n## Tests\n\nTo run the tests, use:\n\n```bash\ncomposer install\nvendor/bin/phpunit\n```\n\n## About this package\n\nThis PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:\n\n- API version: `2.1.8`\n    - Package version: `0.2.0`\n    - Generator version: `7.13.0`\n- Build package: `org.openapitools.codegen.languages.PhpClientCodegen`\n\n## Contributing\n\nPlease see the [CONTRIBUTING.md](./CONTRIBUTING.md) file for guidelines on how to contribute.\n\n## Authors\n\n- [Temuri Takalandze](https://www.abgeo.dev) - *Maintainer*\n\n## License\n\nCopyright (c) 2025-present UBill.\nReleased under the [MIT](./LICENSE) License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fubill-ge%2Fsdk-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fubill-ge%2Fsdk-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fubill-ge%2Fsdk-php/lists"}