2017 © Pedro Peláez
 

library bluelines

A content design and management system for apps

image

shawnsandy/bluelines

A content design and management system for apps

  • Tuesday, August 29, 2017
  • by shawnsandy
  • Repository
  • 1 Watchers
  • 0 Stars
  • 35 Installations
  • CSS
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

bluelines

Latest Version on Packagist ![Software License][ico-license] Build Status ![Coverage Status][ico-scrutinizer] Quality Score ![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)

The Versions