{"id":13462269,"url":"https://github.com/despark/ignicms","last_synced_at":"2026-03-12T06:11:17.729Z","repository":{"id":56966138,"uuid":"58520217","full_name":"despark/ignicms","owner":"despark","description":"igniCMS is an administrative interface builder for Laravel","archived":false,"fork":false,"pushed_at":"2020-04-21T12:40:42.000Z","size":3146,"stargazers_count":21,"open_issues_count":25,"forks_count":5,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-25T01:34:25.526Z","etag":null,"topics":["cms","framework","laravel","php"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/despark.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-05-11T06:39:00.000Z","updated_at":"2023-07-31T06:11:37.000Z","dependencies_parsed_at":"2022-08-21T11:20:26.839Z","dependency_job_id":null,"html_url":"https://github.com/despark/ignicms","commit_stats":null,"previous_names":[],"tags_count":32,"template":false,"template_full_name":null,"purl":"pkg:github/despark/ignicms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/despark%2Fignicms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/despark%2Fignicms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/despark%2Fignicms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/despark%2Fignicms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/despark","download_url":"https://codeload.github.com/despark/ignicms/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/despark%2Fignicms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30416979,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T04:41:02.746Z","status":"ssl_error","status_checked_at":"2026-03-12T04:40:12.571Z","response_time":114,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["cms","framework","laravel","php"],"created_at":"2024-07-31T12:00:43.400Z","updated_at":"2026-03-12T06:11:17.701Z","avatar_url":"https://github.com/despark.png","language":"PHP","funding_links":[],"categories":["Laravel"],"sub_categories":[],"readme":"# Despark's igniCMS\n## IMPORTANT: This repo has been moved to https://github.com/despark/igni-core. \nFor laravel 5.4+ please use the new repo. Thanks!\n\n## Introduction\n**igniCMS** is an administrative interface builder for Laravel 5.3\n\nFor Laravel versions 5.2 use branch v2.0\n\n## Prerequisites\n\n - nodejs \u003e= 4.0\n - npm\n - bower\n - gulp\n - composer\n\n## Installation\n\n1. Require this package in your composer.json and run `composer update`:\n\n  ```json\n  \"require\": {\n     \"php\": \"\u003e=5.5.9\",\n     \"laravel/framework\": \"5.1.*\",\n     \"despark/ignicms\": \"dev-master\"\n  },\n  ```\n\n  Or `composer require despark/ignicms`\n\n2. After composer update, insert service providers `Despark\\Providers\\AdminServiceProvider::class,` `Despark\\Cms\\Providers\\FieldServiceProvider::class,` before the _application service providers_ to the `config/app.php`\n\n  **Example**\n\n  ```php\n   ...\n   /*\n    * Despark CMS Service Provider\n    */\n     Despark\\Cms\\Providers\\AdminServiceProvider::class,\n     Despark\\Cms\\Providers\\FieldServiceProvider::class,\n\n   /*\n    * Application Service Providers...\n    */\n     App\\Providers\\AppServiceProvider::class,\n   ...\n  ```\n\n3. 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:admin:install\n  ```\n\n4. Run the database seeder to populate the database with default user, permissions and roles:\n\n  ```\n    php artisan db:seed --class=DesparkDatabaseSeeder\n  ```\n\n5. All done! Now go to the `\u003cyour_site_url\u003e/admin` and use default credentials `admin@despark.com` / `Despark1234`\n\n## Additional commands\n\n- 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).\n\n  **Example**\n\n  ```\n    php artisan igni:admin:resource \"Blog Post\"\n  ```\n\n- The command `php artisan igni:admin:update` will update composer dependencies, it'll clear the autoload and it'll run any new migrations.\n\n- 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.\n\n### Image styles rebuilding ###\nYou can rebuild image styles using `php artisan igni:images:rebuild` . If you want you can specify which resources to rebuil with `--resources=*` switch.\nYou can exclude some resources with `--without=*`\n\n## Copyright and License \n\nDespark CMS 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%2Fignicms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdespark%2Fignicms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdespark%2Fignicms/lists"}