larapi
larapi copied to clipboard
An API-friendly fork of Laravel. Authentication, error handling, resource filtering, sorting, pagination and much more included
Fix: Compatibility issue throws an error "Replicating claims as headers is deprecated and will be removed from v4.0." - downgrade "lcobucci/jwt": "3.3.3", Fix: UserService - replace fire() with dispatch()
I then increase to max for max_connection, but error again. I don't change config queue and database on project Please help me.
**Steps to Reproduce** 1. Install & configure Larapi 2. Send a postman request to get the access_token ``` php artisan serve curl -X POST http://localhost:8000/login -H 'Content-Type:application/json' -d ' {...
Update composer to require lcobucci/jwt=3.3.3 Fixes #49
Hey there, I'm having problems using parameters like 'middleware' on Route::group() facade static method, And using param 'middleware' like this: ```php Route::group(['middleware' => 'role:admin'], function () { Route::post('create','AppointmentController@create'); }); ```...
Hello, it's not Larapi issue I used some part of your configuration to mount my backend API for SPA React UI, I focused on authentication (login logout) part, everything works...
Hi, I'm interested on get the user to return to angular2 in LoginProxy@proxy, but I did not find which class or object returns this. I need something like this: ```...
Add the missing EventServiceProvider file. Closes #11, esbenp/distributed-laravel#8
Allow user to make use of php artisan make:component command to create Controller, Model, Service and Repository files as well as namespace if not exist: e.g. `php artisan make:component Shop...
Nice work you doing. The only problem i have with this api template is that it doesnt use laravel's standard folders and structure thus making it really hard to integrate....