laravel-transporter icon indicating copy to clipboard operation
laravel-transporter copied to clipboard

Transporter is a futuristic way to send API requests in PHP. This is an OOP approach to handling API requests.

Results 5 laravel-transporter issues
Sort by recently updated
recently updated
newest added

How can I implement SendsXml using Concurrently? ```php class AdequateShopRequest extends Request { use SendsXml; protected string $method = 'POST'; protected string $baseUrl = 'https://webservice.com'; protected array $data = [];...

This is an automated pull request from [Shift](https://laravelshift.com) to update your package code and dependencies to be compatible with Laravel 11.x. **Before merging**, you need to: - Checkout the `l11-compatibility`...

In `getUrl()` there's this code: ```php if (Str::of($this->method)->upper()->contains('GET', 'HEAD')) { return $this->path(); } ``` So any query params set (via `withQuery`) aren't appended. I can PR a fix, was this...

Hello, @JustSteveKing thank you for this great package once again and also for the quick fixes from yesterday. I was thinking about some ways you could improve the package. Below...

enhancement