shawnsandy/bluelines

A content design and management system for apps

dev-master / 1.0.x-dev 2017-08-21 22:19 UTC

This package is not auto-updated.

Last update: 2024-04-22 04:57:50 UTC


README

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

A content design and management system for apps

Install

Via Composer - dev-master branch ( probably the most stable)

$ composer require shawnsandy/bluelines:dev-master

Setup

Add Bluelines provider to your app.php /config/app.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

'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

Add yourself

'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

'providers = [
    ShawnSandy\Dash\PackagesProvider::class,
    ]

Usage

See the docs docs

Change log

Please see CHANGELOG for more information on what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email shawnsandy04@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.