bluelines
![Software License][ico-license]
![Coverage Status][ico-scrutinizer]
![Total Downloads][ico-downloads], (*1)
A content design and management system for apps, (*2)
Install
Via Composer - dev-master branch ( probably the most stable), (*3)
``` bash
$ composer require shawnsandy/bluelines:dev-master, (*4)
## Setup
Add Bluelines provider to your app.php `/config/app.php`
```php
'providers' => [
Illuminate\Validation\ValidationServiceProvider::class,
Illuminate\View\ViewServiceProvider::class,
// .....
/*
* Package Service Providers...
*/
ShawnSandy\Bluelines\BluelinesServicesProvider::class,
];
Next add the Bluelines Facade (Blue) to your aliases, (*5)
'providers' = [
]
'aliases' => [
'Blue' => ShawnSandy\Bluelines\BluelinesFacade::class,
]
You will also need to ensure that required packages are in your app config, if they are not you can add them yourself or use the `PackageProvider.php, (*6)
Add yourself, (*7)
'providers' => [
ShawnSandy\Dash\DashServicesProvider::class,
ShawnSandy\Extras\ExtrasServicesProvider::class,
]
'aliases' => [
"DashForms" => ShawnSandy\Dash\Builder\GenerateFormFieldsFacade::class,
'Extras' => ShawnSandy\Extras\ExtrasFacade::class,
]
__Add the PackagesProvider.php
to the config\app.php
, (*8)
'providers = [
ShawnSandy\Dash\PackagesProvider::class,
]
Usage
See the docs docs, (*9)
Change log
Please see CHANGELOG for more information on what has changed recently., (*10)
Testing
bash
$ composer test
, (*11)
Contributing
Please see CONTRIBUTING and CONDUCT for details., (*12)
Security
If you discover any security related issues, please email shawnsandy04@gmail.com instead of using the issue tracker., (*13)
Credits
License
The MIT License (MIT). Please see License File for more information., (*14)