Skip to content
Merged
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
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/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
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.1.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:

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

```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"
}
}
```

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

## Usage

This library uses named parameters to specify optional arguments.
Expand Down Expand Up @@ -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).
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading