{"id":13482386,"url":"https://github.com/despark/igni-core","last_synced_at":"2025-03-27T13:31:42.333Z","repository":{"id":56966149,"uuid":"79350958","full_name":"despark/igni-core","owner":"despark","description":"UNSUPPORTED: An easy to use \u0026 featherlight CMS that shortcuts the bootstrapping of backend PHP + MySQL based projects. Developed in Laravel, it uses the latest PHP coding standards and library versions.","archived":true,"fork":false,"pushed_at":"2020-03-09T10:06:27.000Z","size":3232,"stargazers_count":13,"open_issues_count":16,"forks_count":5,"subscribers_count":9,"default_branch":"master","last_synced_at":"2024-10-03T09:23:40.565Z","etag":null,"topics":["bower","cms","composer","despark","gulp","laravel","npm"],"latest_commit_sha":null,"homepage":"https://ignicms.com/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/despark.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":"docs/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-18T15:01:49.000Z","updated_at":"2023-01-28T15:30:24.000Z","dependencies_parsed_at":"2022-08-21T11:20:19.372Z","dependency_job_id":null,"html_url":"https://github.com/despark/igni-core","commit_stats":null,"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/despark%2Figni-core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/despark%2Figni-core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/despark%2Figni-core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/despark%2Figni-core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/despark","download_url":"https://codeload.github.com/despark/igni-core/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222262185,"owners_count":16957527,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bower","cms","composer","despark","gulp","laravel","npm"],"created_at":"2024-07-31T17:01:01.475Z","updated_at":"2024-10-30T16:30:37.130Z","avatar_url":"https://github.com/despark.png","language":"PHP","funding_links":[],"categories":["Laravel"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"https://despark.com/public/images/despark-logo.svg\"\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://packagist.org/packages/despark/igni-core\"\u003e\u003cimg src=\"https://poser.pugx.org/despark/igni-core/v/stable.svg\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# Despark's igniCMS\n\n## UNSUPORTED\nThis project is not maintained anymore. Still we :heart: you!\n\n## About\n**igniCMS** is an administrative interface builder for Laravel 5.6. \n\n_For older Laravel versions (5.4 \u0026 5.5) please use \u003ca href=\"https://github.com/despark/igni-core/tree/1.7\"\u003eversion 1.7\u003c/a\u003e of the igniCMS._\n\n## Prerequisites\n\n - nodejs \u003e= 4.0\n - yarn or npm\n - bower\n - gulp\n - composer\n\n## Installation\n\n1. Run `composer require despark/igni-core`.\n\n2. Add igniCMS service providers before the _application service providers_ in the `config/app.php`, as shown below **(Optional for Laravel 5.5+)** \n\n  _Example_\n\n  ```php\n   ...\n    /*\n    * igniCMS Service Providers\n    */\n    Despark\\Cms\\Providers\\AdminServiceProvider::class,\n    Despark\\Cms\\Providers\\IgniServiceProvider::class,\n    Despark\\Cms\\Providers\\EntityServiceProvider::class,\n    Despark\\Cms\\Providers\\JavascriptServiceProvider::class,\n\n    /*\n    * Package Service Providers...\n    */\n    Laravel\\Tinker\\TinkerServiceProvider::class,\n   ...\n  ```\n  \n3. Config your database settings in your `.env` file.\n\n```\n    DB_CONNECTION=mysql\n    DB_HOST=127.0.0.1\n    DB_PORT=3306\n    DB_DATABASE=mydbw\n    DB_USERNAME=user\n    DB_PASSWORD=password\n```\n\n4. 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** \u0026 **bower**, installed globally_):\n\n  ```\n    php artisan igni:install\n  ```\n  \n5. Config your `config/auth.php` file to use Igni's User model\n\n_Example_\n\n ```php\n   ...\n    'providers' =\u003e [\n        'users' =\u003e [\n            'driver' =\u003e 'eloquent',\n            'model' =\u003e App\\Models\\User::class,\n        ],\n   ...\n  ```\n\n6. All done! Now go to the `\u003cyour_site_url\u003e/admin` and use your credentials\n\n## GDPR Compliance\n\n- IgniCMS provides you with out of the box functionalities, which will make the process of GDPR compliance on boarding easier. In our \u003ca href=\"https://despark.github.io/igni-core/\"\u003eGithub page\u003c/a\u003e you will understand how to use them.\n\n## Additional information\n\n- You can find more info about IgniCMS in our \u003ca href=\"https://despark.github.io/igni-core/\"\u003eGithub page\u003c/a\u003e.\n\n## Copyright and License\n\nigniCMS was written by Despark for the Laravel framework and is released under the MIT License. See the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdespark%2Figni-core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdespark%2Figni-core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdespark%2Figni-core/lists"}