diff --git a/.github/workflows/release-doctor.yml b/.github/workflows/release-doctor.yml index 9efe8afb..fa17f3d7 100644 --- a/.github/workflows/release-doctor.yml +++ b/.github/workflows/release-doctor.yml @@ -9,7 +9,7 @@ jobs: release_doctor: name: release doctor runs-on: ubuntu-latest - if: github.repository == 'stainless-sdks/onlyfansapi-php' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') + if: github.repository == 'onlyfansapi/onlyfansapi-php' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next') steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1332969b..3d2ac0bd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.0.1" + ".": "0.1.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 9e2312e6..361d7c95 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 266 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/onlyfansapi/onlyfansapi-c87be5d2d5ab8294e815564b9927e3d2a0c520f9574eebb9744324d9c26089ab.yml -openapi_spec_hash: df45bde0a256fd87ddf78b3775a0e050 -config_hash: 82a0b3e6782d24133c56d143b5030704 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/onlyfansapi/onlyfansapi-a27d1c42e6271f5f8f6efafba63522fce26b3e353951da3497fad7627eba1cb3.yml +openapi_spec_hash: 8117459a7779859f329e7e48ef08a9b6 +config_hash: 15a66abc349649aa3faa50f54d68d76d diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..762eef2b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,19 @@ +# Changelog + +## 0.1.0 (2026-05-24) + +Full Changelog: [v0.0.1...v0.1.0](https://github.com/onlyfansapi/onlyfansapi-php/compare/v0.0.1...v0.1.0) + +### Features + +* **api:** api update ([694fd7f](https://github.com/onlyfansapi/onlyfansapi-php/commit/694fd7fba164489f3935cbf0f04f725b4b86101f)) +* **api:** api update ([ed74bca](https://github.com/onlyfansapi/onlyfansapi-php/commit/ed74bcaa478cab8182e932d804d4581a41754155)) +* **api:** manual updates ([c7b13c3](https://github.com/onlyfansapi/onlyfansapi-php/commit/c7b13c3f529ee2fd0218b0d41d22b27d38e767de)) +* **api:** manual updates ([1a647b0](https://github.com/onlyfansapi/onlyfansapi-php/commit/1a647b0c4cbc6e18b73540a66901561fd166e96d)) +* **api:** manual updates ([14c11c9](https://github.com/onlyfansapi/onlyfansapi-php/commit/14c11c9c0e75dc824c4cd84c1f54d6b943356a73)) + + +### Chores + +* configure new SDK language ([4cd0b51](https://github.com/onlyfansapi/onlyfansapi-php/commit/4cd0b51f1cbcbdf800bf010644b9d9bbf38d35d6)) +* update SDK settings ([caba05f](https://github.com/onlyfansapi/onlyfansapi-php/commit/caba05f98d5fb809e01ccf46de1c6255ebda2dc3)) diff --git a/README.md b/README.md index c968dded..6257c8db 100644 --- a/README.md +++ b/README.md @@ -12,20 +12,24 @@ The REST API documentation can be found on [docs.onlyfansapi.com](https://docs.o To use this package, install via Composer by adding the following to your application's `composer.json`: + + ```json { "repositories": [ { "type": "vcs", - "url": "git@github.com:stainless-sdks/onlyfansapi-php.git" + "url": "git@github.com:onlyfansapi/onlyfansapi-php.git" } ], "require": { - "org-placeholder/onlyfansapi": "dev-main" + "onlyfansapi/onlyfansapi-php": "dev-main" } } ``` + + ## Usage This library uses named parameters to specify optional arguments. @@ -196,4 +200,4 @@ PHP 8.1.0 or higher. ## Contributing -See [the contributing documentation](https://github.com/stainless-sdks/onlyfansapi-php/tree/main/CONTRIBUTING.md). +See [the contributing documentation](https://github.com/onlyfansapi/onlyfansapi-php/tree/main/CONTRIBUTING.md). diff --git a/composer.json b/composer.json index a97d3860..25e51e44 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ "sort-packages": true }, "description": "Only Fans API PHP SDK", - "name": "org-placeholder/onlyfansapi", + "name": "onlyfansapi/onlyfansapi-php", "require": { "php": "^8.1", "php-http/discovery": "^1", diff --git a/src/Version.php b/src/Version.php index ab6ec839..706ca186 100644 --- a/src/Version.php +++ b/src/Version.php @@ -5,5 +5,5 @@ namespace Onlyfansapi; // x-release-please-start-version -const VERSION = '0.0.1'; +const VERSION = '0.1.0'; // x-release-please-end