myerscode / laravel-sub-request
A helper and facade for making internal API sub requests to your application
Installs: 45 554
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 2
Forks: 0
Open Issues: 0
Type:package
Requires
- php: ^7.3
Requires (Dev)
- laravel/framework: ^8.0
- mockery/mockery: ^1.2
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
README
a helper and facade for making internal sub requests to your application API
By sending a sub request within the application, you can simply consume your applications API without having to send seperate, slower HTTP requests.
Install
You can install this package via composer:
composer require myerscode/laravel-sub-request
Setup
Laravel >=5.5
The package will be auto discovered.
Laravel 5.4
Add Myerscode\Laravel\SubRequest\SubRequestProvider
to the providers
array in config/app.php
Usage
In your controller you can inject the sub request component into your class or use the SubRequest
facade or the global helper method subrequest
.
namespace App\Controllers; class MyController { public function __contstruct(Dispatcher $subRequest) { $this->subRequest = $subRequest; } public function routeOne() { return $this->subRequest->dispatch('POST', '/auth', ['foo' => 'bar']) } public function routeTwo() { return SubRequest::dispatch('GET', '/details', ['foo' => 'bar']) } public function routeThree() { return subrequest('GET', '/details', ['foo' => 'bar']) } ... }