wgjr / hateoas-laravel
Laravel response hateoas
Installs: 2 332
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires (Dev)
- php: >=7.4
- ext-json: *
- laravelcollective/html: ^5.5
- orchestra/testbench: ^3.8
README
#How to install
composer require wgjr/hateoas-laravel
- Required PHP 7.4 + Others versions:
composer require wgjr/hateoas-laravel --ignore-platform-reqs
- Laravel 5.6+
How tu use class
- Add providers in Laravel
\hateoasLaravel\HateoasLaravelServiceProvider::class
- add in you class
use use hateoasLaravel\Domain\UseCases\HateoasLaravel;
$responseFormater = new HateoasLaravel();
/**
*
* Formatted a universal response object to Hateoas response
*
* @param string $classInResponse
* @param string $hashMessage
* @param int|null $code
* @param array|null $dataResponse
* @return LaravelJsonResponse
* @throws Exception
*/
return $this->responseFormatter->formatResponse(
'login',
'login_success',
200,
[]
);