Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: CI
on:
push:
branches-ignore:
- 'generated'
- 'codegen/**'
- 'integrated/**'
- 'stl-preview-head/**'
- 'stl-preview-base/**'
branches:
- '**'
- '!integrated/**'
- '!stl-preview-head/**'
- '!stl-preview-base/**'
- '!generated'
- '!codegen/**'
- 'codegen/stl/**'
pull_request:
branches-ignore:
- 'stl-preview-head/**'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-doctor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
release_doctor:
name: release doctor
runs-on: ubuntu-latest
if: github.repository == 'stainless-sdks/qbil-php-sdk-php' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
if: github.repository == 'sadiqk2/api-php-sdk-qbil' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')

steps:
- uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.0.1"
".": "0.0.2"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 52
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/qbil-software%2Fqbil-php-sdk-9abec18295cfc751c7789f72f064e350916f1d42843be136f05ade3ee5fe871b.yml
openapi_spec_hash: 38132c4324efa54e915ac5a9dcd01ea3
config_hash: 6bb0ea547199efc1bc60ee482552d69b
config_hash: c701089245cda0fdd57da4b7d682d880
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

## 0.0.2 (2026-03-17)

Full Changelog: [v0.0.1...v0.0.2](https://github.com/sadiqk2/api-php-sdk-qbil/compare/v0.0.1...v0.0.2)

### Chores

* **internal:** codegen related update ([6ae26b3](https://github.com/sadiqk2/api-php-sdk-qbil/commit/6ae26b3b7f20bf3a0936e8698c72c8a392063802))
* **internal:** codegen related update ([4ebd761](https://github.com/sadiqk2/api-php-sdk-qbil/commit/4ebd76140d0cf3cd627e7ff1dff0249c8e032be6))
* **internal:** remove mock server code ([5f1cd6a](https://github.com/sadiqk2/api-php-sdk-qbil/commit/5f1cd6affc5551d5e078d4c5ea97bd95c7bde510))
* **internal:** tweak CI branches ([c26dc92](https://github.com/sadiqk2/api-php-sdk-qbil/commit/c26dc9221bfc03762338fff328f59e596efffdc3))
* **internal:** upgrade phpunit ([22a9597](https://github.com/sadiqk2/api-php-sdk-qbil/commit/22a95979c42db16af08eba1329828547d08e5bec))
* **test:** update skip reason message ([23fca65](https://github.com/sadiqk2/api-php-sdk-qbil/commit/23fca65ca57a6c690efed173c1fb91953eee90eb))
* update mock server docs ([15dfea0](https://github.com/sadiqk2/api-php-sdk-qbil/commit/15dfea06564ff243fa7bf1d64124b1bbe915d46f))
* update SDK settings ([c3219ab](https://github.com/sadiqk2/api-php-sdk-qbil/commit/c3219abad1e23e441f7bb515020915945ee6b7c9))
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@ It is generated with [Stainless](https://www.stainless.com/).

To use this package, install via Composer by adding the following to your application's `composer.json`:

<!-- x-release-please-start-version -->

```json
{
"repositories": [
{
"type": "vcs",
"url": "git@github.com:stainless-sdks/qbil-php-sdk-php.git"
"url": "git@github.com:sadiqk2/api-php-sdk-qbil.git"
}
],
"require": {
Expand All @@ -24,6 +26,8 @@ To use this package, install via Composer by adding the following to your applic
}
```

<!-- x-release-please-end -->

## Usage

This library uses named parameters to specify optional arguments.
Expand Down Expand Up @@ -164,4 +168,4 @@ PHP 8.1.0 or higher.

## Contributing

See [the contributing documentation](https://github.com/stainless-sdks/qbil-php-sdk-php/tree/main/CONTRIBUTING.md).
See [the contributing documentation](https://github.com/sadiqk2/api-php-sdk-qbil/tree/main/CONTRIBUTING.md).
Loading