despark / ignicms
Administrative interface builder for Laravel 5.1
Installs: 2 471
Dependents: 1
Suggesters: 0
Security: 0
Stars: 21
Watchers: 6
Forks: 5
Open Issues: 25
Type:project
Requires
- php: >=5.6.4
- barryvdh/laravel-ide-helper: ^2.1
- cviebrock/eloquent-sluggable: ^3.0
- guzzlehttp/guzzle: ~5.3|~6.0
- intervention/image: ^2.3
- jenssegers/agent: ^2.3
- laravel/framework: 5.3.*
- laravelcollective/html: 5.3.*@dev
- mailchimp/mailchimp: ~2.0
- roumen/sitemap: ^2.5
- rtconner/laravel-tagging: ~2.0
- rutorika/sortable: ^2.3
- spatie/laravel-permission: ^1.4
Requires (Dev)
- corneltek/phprelease: ^1.3
- fzaninotto/faker: ~1.4
- graham-campbell/testbench: ^3.2
- mockery/mockery: 0.9.*
- phpspec/phpspec: ~2.1
- phpunit/phpunit: ~5.0
- symfony/css-selector: ~3.0
- symfony/dom-crawler: ~3.0
- dev-master
- 3.0.x-dev
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- v3.0.1
- v2.x-dev
- 2.5.3
- 2.5.2
- 2.5.1
- 2.5.0
- 2.4.2
- 2.4.1
- 2.4.0
- 2.3.7
- 2.3.6
- 2.3.5
- 2.3.4
- 2.3.3
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.0
- 2.0.0
- v1.x-dev
- 1.0.1
- 1.0.0
- 0.0.1
- dev-polyfill
- dev-temp
- dev-seo-plugin
- dev-f-images-delete
- dev-remove-taggable-from-user-model
- dev-f-refactoring-gulp-config
- dev-bf-datatables-actions
- dev-f-datatables
- dev-analysis-8LmAZP
This package is auto-updated.
Last update: 2024-10-21 22:19:16 UTC
README
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
:
"require": { "php": ">=5.5.9", "laravel/framework": "5.1.*", "despark/ignicms": "dev-master" },
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
... /* * Despark CMS Service Provider */ Despark\Cms\Providers\AdminServiceProvider::class, Despark\Cms\Providers\FieldServiceProvider::class, /* * Application Service Providers... */ App\Providers\AppServiceProvider::class, ...
- 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):
php artisan igni:admin:install
- Run the database seeder to populate the database with default user, permissions and roles:
php artisan db:seed --class=DesparkDatabaseSeeder
- All done! Now go to the
<your_site_url>/admin
and use default credentialsadmin@despark.com
/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
php artisan igni:admin:resource "Blog Post"
-
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.