Download the PHP package iramgutierrez/laravel-resource-api without Composer
On this page you can find all versions of the php package iramgutierrez/laravel-resource-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download iramgutierrez/laravel-resource-api
More information about iramgutierrez/laravel-resource-api
Files in iramgutierrez/laravel-resource-api
Package laravel-resource-api
Short Description Create a resource API for Laravel 5.2: entity, repository, manager, validator, controller, migration, table , route and documentation
License MIT
Informations about the package laravel-resource-api
Resource API Generator for Laravel 5.2
Full resource generator for API RESTful,
This package implements the layers pattern design, include:
- Entity
- Controller
- Manager
- Validator
- Repository
- Migration
- Route
- Documentation (Require apidocjs installed)
Installation
Add the following line to your composer.json
file:
Run composer update
to get the package.
Once composer has installed the package add this line of code to the providers
array located in your config/app.php
file:
Add this line of code to the $commands
protected array located in your app/Console/Kernel.php
file:
Migrations and Configuration Publishing
Run php artisan vendor:publish
to publish this package configuration and migrations. Afterwards you can edit the file config/resource_api.php
to set the namespace for the resources generated.
Run migration to create required tables
Usage
Now, you should have available the Artisan command: create-resource-api
and can be used like this:
Example
Run
And, the command ask you for the table name:
namespace:
prefix route:
if do you want generate documentation:
if do you want generate the migration file:
if do you want run migration:
if do you want add the route resource in routes.php
file:
and if do you want add some middleware:
When the execution is finished, you should have available the following functional routes:
Route | Method | Uses | Action |
---|---|---|---|
/tests | GET | API\TestController@index | Request all tests |
/tests | POST | API\TestController@store | Store a test |
/tests/:id | GET | API\TestController@show | Request a specific test |
/tests/:id | PUT | API\TestController@update | Update a specific test |
/tests/:id | DELETE | API\TestController@destroy | Delete a specific test |
License
The Laravel Resource API package is released under the MIT License.
All versions of laravel-resource-api with dependencies
memio/memio Version ^1.0
illuminate/http Version 5.3.*
illuminate/support Version 5.3.*
illuminate/console Version 5.3.*