wewerenext / next-cms
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 108
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 5
Forks: 1
Open Issues: 1
Language:HTML
Requires
- cloudinary/cloudinary_php: ^1.4
- laravel/framework: 5.1.*
- laravelcollective/html: 5.1.*
- webonyx/graphql-php: ^0.7.2
Requires (Dev)
- orchestra/testbench: ~3.1
- phpunit/phpunit: ~4.0
- squizlabs/php_codesniffer: ^2.3
This package is not auto-updated.
Last update: 2019-04-29 01:56:43 UTC
README
Next CMS
Installation
Next CMS can be integrated into any Laravel 5.1 project by simply adding the Service Provider to your project config/app.php.
To download the CMS package and add it to your Composer's dependency list run this command:
composer require wewerenext/next-cms
Add this provider to your Laravel projects config/app.php
file, at the end of the 'providers' => [
array:
Wearenext\CMS\ServiceProvider::class, ],
Important: Add these two lines to the 'aliases' => [
array near the end of that same file:
'CMSHtml' => Wearenext\CMS\Support\Facades\HtmlFacade::class, 'CMSForm' => Wearenext\CMS\Support\Facades\FormFacade::class, ],
Final step is to publish all database migrations and public facing assets into your Laravel project. Run these two commands and optionally commit them to your projects code-base:
php artisan vendor:publish --tag=database php artisan vendor:publish --tag=public
Customization
Customizable attributes in the CMS can modified by overriding configuration directives set in config/cms.php
. By default the configuration file looks like this:
return [ 'group' => [ 'prefix' => 'admin', // You can access the CMS by appending /admin to your projects URL ], 'brand' => [ 'color' => '#737373', // Color in menu bar 'title' => 'Wearenext-CMS', // Brand name in menu bar ], 'auth' => [ 'middleware' => 'auth', // How authentication is checked for protected routes ], ];
Testing
You can scan the source code for most errors including PSR adherence by running either of these two Composer scripts:
composer test-source # Scan for PSR and PHP errors composer test # Scan for errors and run phpunit tests