qijitech / api-starter-kit
There is no license information available for the latest version (dev-master) of this package.
api starter kit
dev-master
2016-07-11 11:12 UTC
Requires
- php: >=5.5.9
- dingo/api: 1.0.x-dev
- illuminate/database: 5.2.*
- illuminate/support: 5.2.*
- tymon/jwt-auth: 0.5.6
Requires (Dev)
- laravel/framework: 5.2.*
This package is not auto-updated.
Last update: 2024-11-09 19:22:46 UTC
README
restful api library with laravel or lumen.
Installation
To install this package you will need:
- Laravel 5.1+ or Lumen 5.1+
- PHP 5.5.9+
You must then modify your composer.json file and run composer update to include the latest version of the package in your project.
"require": {
"qijitech/api-starter-kit": "dev-master"
}
Laravel
Open config/app.php and register the required service provider above your application providers.
'providers' => [ Api\StarterKit\Providers\ApiStarterKitServiceProvider::class ]
If you'd like to make configuration changes in the configuration file you can pubish it with the following Aritsan command:
php artisan vendor:publish
Lumen
"require": {
"qijitech/api-starter-kit": "dev-lumen"
}
Open bootstrap/app.php and register the required service provider.
$app->register(Api\StarterKit\Providers\LumenServiceProvider::class)
Sample Code
You can find the sample code here. Note that you'll need to run composer install to install all the dependencies.