{"id":16423595,"url":"https://github.com/rougin/ignite","last_synced_at":"2025-10-26T22:31:45.309Z","repository":{"id":20450443,"uuid":"23727532","full_name":"rougin/ignite","owner":"rougin","description":"Yet another Codeigniter 3 starter.","archived":false,"fork":false,"pushed_at":"2024-10-23T04:15:13.000Z","size":2230,"stargazers_count":1,"open_issues_count":0,"forks_count":4,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-01T00:51:05.702Z","etag":null,"topics":["codeigniter","codeigniter-project","combustor","ignite","php-project"],"latest_commit_sha":null,"homepage":"https://roug.in/ignite/","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/rougin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-09-06T05:21:48.000Z","updated_at":"2024-11-17T16:27:32.000Z","dependencies_parsed_at":"2024-10-23T05:02:03.884Z","dependency_job_id":null,"html_url":"https://github.com/rougin/ignite","commit_stats":{"total_commits":123,"total_committers":3,"mean_commits":41.0,"dds":0.3089430894308943,"last_synced_commit":"3f8a620662b61fb152444cefe8fb8f31a8b0ee60"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rougin%2Fignite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rougin%2Fignite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rougin%2Fignite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rougin%2Fignite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rougin","download_url":"https://codeload.github.com/rougin/ignite/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238408487,"owners_count":19467099,"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":["codeigniter","codeigniter-project","combustor","ignite","php-project"],"created_at":"2024-10-11T07:40:22.807Z","updated_at":"2025-10-26T22:31:43.907Z","avatar_url":"https://github.com/rougin.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ignite\n\n[![Latest Version on Packagist][ico-version]][link-packagist]\n[![Software License][ico-license]][link-license]\n[![Total Downloads][ico-downloads]][link-downloads]\n\nIgnite is yet another [Codeigniter 3](https://codeigniter.com/userguide3) project template with a twist:\n\n* Moved the `application` directory as the root directory; and\n* Created a `public` directory to store the main `index.php` file.\n\n``` bash\nciacme/\n├── cache/\n├── config/\n├── controllers/\n├── core/\n├── helpers/\n├── hooks/\n├── language/\n├── libraries/\n├── logs/\n├── models/\n├── public/\n│   ├── .htaccess\n│   └── index.php\n├── third_party/\n├── vendor/\n├── views/\n└── composer.json\n```\n\n## Installation\n\nUse [Composer](https://getcomposer.org/) to create a new `Ignite`-based `Codeigniter 3` project:\n\n``` bash\n$ composer create-project rougin/ignite \"ciacme\"\n```\n\n## Running in local\n\nTo run the application for development, the [built-in web server](https://www.php.net/manual/en/features.commandline.webserver.php) of PHP can be used:\n\n``` bash\n$ cd ciacme\n$ php -S localhost:4464 -t public/\n```\n\n\u003e [!NOTE]\n\u003e The built-in web server is only available for PHP versions `v5.4` and higher.\n\nAfter running the web server, access `http://localhost:4464` in a web browser.\n\n## Featured packages\n\n`Ignite` also provides default configuration for the following third-party packages below. These packages improve quality of development when writing code under `Codeigniter 3`:\n\n* [Combustor](https://roug.in/combustor/)\n\nCombustor is a utility package for `Codeigniter 3` that generates controllers, models, and views based on the provided database tables. It uses the [Describe](https://roug.in/describe/) package for getting columns from a database table and as the basis for code generation.\n\n* [Refinery](https://roug.in/refinery/)\n\nRefinery is a console-based package of [Migrations Class](https://www.codeigniter.com/userguide3/libraries/migration.html) for `Codeigniter 3`. It also uses the [Describe](https://roug.in/describe/) package for retrieving the database tables for creating database migrations.\n\n## Changelog\n\nPlease see [CHANGELOG][link-changelog] for more information what has changed recently.\n\n## Credits\n\n- [All contributors][link-contributors]\n\n## License\n\nThe MIT License (MIT). Please see [LICENSE][link-license] for more information.\n\n[ico-version]: https://img.shields.io/packagist/v/rougin/ignite.svg?style=flat-square\n[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\n[ico-downloads]: https://img.shields.io/packagist/dt/rougin/ignite.svg?style=flat-square\n\n[link-changelog]: https://github.com/rougin/ignite/blob/master/CHANGELOG.md\n[link-contributors]: https://github.com/rougin/ignite/contributors\n[link-downloads]: https://packagist.org/packages/rougin/ignite\n[link-license]: https://github.com/rougin/ignite/blob/master/LICENSE.md\n[link-packagist]: https://packagist.org/packages/rougin/ignite","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frougin%2Fignite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frougin%2Fignite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frougin%2Fignite/lists"}