saloon
saloon copied to clipboard
🤠 Build beautiful API integrations and SDKs with Saloon
composer require saloonphp/laravel-plugin "^3.0" does not work anymore on Laravel 11.5 version, giving conflicts.
## Current Behavior When handling a paginated request using Laravel's `LazyCollection`, multiple calls to `->collect()` will trigger the infinite loop detection. ## Expected Behavior Multiple calls to `->collect()` should not...
## Problem Historically, Saloon had an HTTP sender integration that made outgoing requests show up automatically in **Laravel Telescope** (under the HTTP Client watcher) which was really helpful for local...
Here's the very, very first go at extending Saloon to support *any* type of Sender. Shell commands are the first one I've had a go at, and the concept seems...
Using Pool with PagePaginated requests will send the same page for all concurrent requests, since $request is shallow cloned and $query is an ArrayStore object, it will be the same...
Hello, with the following code: ```php // $pendingRequest is a \Saloon\Http\PendingRequest // $connector is an implementation of \Saloon\Http\Connector that uses \Saloon\Traits\OAuth2\ClientCredentialsGrant $pendingRequest->authenticate($connector->getAccessToken()); ``` PHPStan will detect it as a possible...
**Fix issue #508** Added support for [PSR-20](https://www.php-fig.org/psr/psr-20/) to enhance testability. Furthermore, we do not rely on specific implementations of PSR-20—any project using this library can adopt any date library that...
Hi there, I am wondering if the cache plugin and the rate-limit plugin are compatible to work with each other. I got a pretty confusing issue at the moment. For...