Download the PHP package despark/ignicms without Composer
On this page you can find all versions of the php package despark/ignicms. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package ignicms
Despark's igniCMS
IMPORTANT: This repo has been moved to https://github.com/despark/igni-core.
For laravel 5.4+ please use the new repo. Thanks!
Introduction
igniCMS is an administrative interface builder for Laravel 5.3
For Laravel versions 5.2 use branch v2.0
Prerequisites
- nodejs >= 4.0
- npm
- bower
- gulp
- composer
Installation
-
Require this package in your composer.json and run
composer update
:Or
composer require despark/ignicms
-
After composer update, insert service providers
Despark\Providers\AdminServiceProvider::class,
Despark\Cms\Providers\FieldServiceProvider::class,
before the application service providers to theconfig/app.php
Example
-
Run this command in the terminal (it'll set all necessary resources to use the CMS. To complete this step you should have composer, npm & bower, installed globally):
-
Run the database seeder to populate the database with default user, permissions and roles:
- All done! Now go to the
<your_site_url>/admin
and use default credentials[email protected]
/Despark1234
Additional commands
-
Use the command
php artisan igni:admin:resource
to create all necessary files for manipulating resources. You should specify the resource name (in title case).Example
-
The command
php artisan igni:admin:update
will update composer dependencies, it'll clear the autoload and it'll run any new migrations. - You can run
php artisan igni:admin:prod
on your production server, after deploy. It will install all dependencies according to your composer.lock file, run new migrations and optimize the autoload.
Image styles rebuilding
You can rebuild image styles using php artisan igni:images:rebuild
. If you want you can specify which resources to rebuil with --resources=*
switch.
You can exclude some resources with --without=*
Copyright and License
Despark CMS was written by Despark for the Laravel framework and is released under the MIT License. See the LICENSE file for details.