L-ARANE Packages Suite is a collection of Laravel packages that help developers to easily implement services oriented applications based on this framework. Each package serves as a service, including its own service handler and API.
Base package provides an easy way to setup a new Laravel application, including services to handle users, roles, permissions, authentication, countries, system and user settings an exception handling.
src/
Lang/
Models/
Entities/
Traits/
Migrations/
Providers/
Services/
Handlers/
routes.php
composer require arane/base
In Laravel 5.5 the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:
'providers' => [
// ...
Arane\Base\Providers\BaseServiceProvider::class,
];
Publish migration files:
php artisan vendor:publish --provider="Arane\Base\BaseServiceProvider" --tag="migration"
After the migration has been published, create package tables by running the migrations:
php artisan migrate
Publish config files:
php artisan vendor:publish --provider="Arane\Base\BaseServiceProvider" --tag="config"
Publish language files:
php artisan vendor:publish --provider="Arane\Base\BaseServiceProvider" --tag="lang"
Please see CHANGELOG for more information on what has changed recently.
$ composer test
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
If you discover any security related issues, please email :author_email instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.