shawnsandy / bluelines
A content design and management system for apps
Installs: 39
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Language:CSS
Requires
- php: ~5.6|~7.0
- illuminate/contracts: ~5.3|~5.4
- illuminate/http: ~5.3|~5.4
- illuminate/support: ~5.3|~5.4
- unisharp/laravel-filemanager: ^1.8
Requires (Dev)
- phpunit/phpunit: ~4.0||~5.0||~6.0
- squizlabs/php_codesniffer: ^2.3
This package is not auto-updated.
Last update: 2024-11-18 07:49:43 UTC
README
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.