despark / igni-core
Igni CMS Kernel
Installs: 932
Dependents: 0
Suggesters: 0
Security: 0
Stars: 12
Watchers: 8
Forks: 5
Open Issues: 16
Requires
- php: >=5.6.4
- cviebrock/eloquent-sluggable: ^4.1
- despark/laravel-db-i18n: v1.x
- doctrine/dbal: ^2.5
- flowjs/flow-php-server: ^1.0
- intervention/image: ^2.3
- laravel/framework: 5.6.*
- laravelcollective/html: ~5.1
- rutorika/sortable: >=2.3
- spatie/laravel-permission: >=1.11
- yajra/laravel-datatables-oracle: ~8.0
Requires (Dev)
- barryvdh/laravel-ide-helper: ^2.1
- fzaninotto/faker: ~1.4
- graham-campbell/testbench: ^5.0
- mockery/mockery: ^1.0
- phpunit/phpunit: ^7.0
- sllh/composer-versions-check: ^2.0.3
- dev-master
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0
- 1.8.5
- 1.8.4
- 1.8.3
- 1.8.2
- 1.8.1
- 1.8
- 1.7
- 1.6
- 1.5
- 1.4.9.1
- 1.4.9
- v1.4.8
- v1.4.7
- v1.4.6
- v1.4.5
- v1.4.4
- v1.4.3.1
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4
- v1.3
- v1.2
- v1.1
- v1.0
- dev-dependabot/npm_and_yarn/sshpk-1.16.1
- dev-dependabot/npm_and_yarn/stringstream-0.0.6
- dev-dependabot/npm_and_yarn/is-my-json-valid-2.20.0
- dev-dependabot/npm_and_yarn/marked-0.3.19
- dev-dependabot/npm_and_yarn/lodash-4.17.13
- dev-translatable-redirect-5.5
This package is auto-updated.
Last update: 2020-09-09 11:14:16 UTC
README
Despark's igniCMS
UNSUPORTED
This project is not maintained anymore. Still we ❤️ you!
About
igniCMS is an administrative interface builder for Laravel 5.6.
For older Laravel versions (5.4 & 5.5) please use version 1.7 of the igniCMS.
Prerequisites
- nodejs >= 4.0
- yarn or npm
- bower
- gulp
- composer
Installation
-
Run
composer require despark/igni-core
. -
Add igniCMS service providers before the application service providers in the
config/app.php
, as shown below (Optional for Laravel 5.5+)
Example
... /* * igniCMS Service Providers */ Despark\Cms\Providers\AdminServiceProvider::class, Despark\Cms\Providers\IgniServiceProvider::class, Despark\Cms\Providers\EntityServiceProvider::class, Despark\Cms\Providers\JavascriptServiceProvider::class, /* * Package Service Providers... */ Laravel\Tinker\TinkerServiceProvider::class, ...
- Config your database settings in your
.env
file.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=mydbw
DB_USERNAME=user
DB_PASSWORD=password
- 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:install
- Config your
config/auth.php
file to use Igni's User model
Example
... 'providers' => [ 'users' => [ 'driver' => 'eloquent', 'model' => App\Models\User::class, ], ...
- All done! Now go to the
<your_site_url>/admin
and use your credentials
GDPR Compliance
- IgniCMS provides you with out of the box functionalities, which will make the process of GDPR compliance on boarding easier. In our Github page you will understand how to use them.
Additional information
- You can find more info about IgniCMS in our Github page.
Copyright and License
igniCMS was written by Despark for the Laravel framework and is released under the MIT License. See the LICENSE file for details.