{"id":17437140,"url":"https://github.com/elusivecodes/fyremake","last_synced_at":"2025-08-03T16:31:30.831Z","repository":{"id":257816617,"uuid":"870129919","full_name":"elusivecodes/FyreMake","owner":"elusivecodes","description":"A collection of commands for generating files for FyrePHP.","archived":false,"fork":false,"pushed_at":"2024-10-18T04:58:26.000Z","size":50,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-10-19T13:26:53.340Z","etag":null,"topics":["command","generator","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/elusivecodes.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-09T13:49:22.000Z","updated_at":"2024-10-18T04:57:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"33f9aa2b-2454-47b1-8735-8a4404b30703","html_url":"https://github.com/elusivecodes/FyreMake","commit_stats":null,"previous_names":["elusivecodes/fyremake"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elusivecodes%2FFyreMake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elusivecodes%2FFyreMake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elusivecodes%2FFyreMake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elusivecodes%2FFyreMake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elusivecodes","download_url":"https://codeload.github.com/elusivecodes/FyreMake/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":228555300,"owners_count":17936323,"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":["command","generator","php"],"created_at":"2024-10-17T11:06:03.426Z","updated_at":"2025-08-03T16:31:30.817Z","avatar_url":"https://github.com/elusivecodes.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FyreMake\r\n\r\n**FyreMake** is a free, open-source collection of commands for generating files for [*FyrePHP*](https://github.com/elusivecodes/FyrePHP).\r\n\r\n\r\n## Table Of Contents\r\n- [Installation](#installation)\r\n- [Commands](#commands)\r\n    - [Make Behavior](#make-behavior)\r\n    - [Make Cell](#make-cell)\r\n    - [Make Cell Template](#make-cell-template)\r\n    - [Make Command](#make-command)\r\n    - [Make Config](#make-config)\r\n    - [Make Controller](#make-controller)\r\n    - [Make Element](#make-element)\r\n    - [Make Entity](#make-entity)\r\n    - [Make Helper](#make-helper)\r\n    - [Make Job](#make-job)\r\n    - [Make Lang](#make-lang)\r\n    - [Make Layout](#make-layout)\r\n    - [Make Middleware](#make-middleware)\r\n    - [Make Migration](#make-migration)\r\n    - [Make Model](#make-model)\r\n    - [Make Template](#make-template)\r\n\r\n\r\n\r\n## Installation\r\n\r\n**Using Composer**\r\n\r\n```\r\ncomposer require fyre/make\r\n```\r\n\r\nIn PHP:\r\n\r\n```php\r\n$runner = $container-\u003euse(CommandRunner::class);\r\n\r\n$runner-\u003eaddNamespace('\\Fyre\\Make\\Commands');\r\n```\r\n\r\n\r\n## Commands\r\n\r\n### Make Behavior\r\n\r\nGenerate a new [*Behavior*](https://github.com/elusivecodes/FyreORM#behaviors).\r\n\r\n```php\r\n$runner-\u003erun('make:behavior', ['Example']);\r\n```\r\n\r\n### Make Cell\r\n\r\nGenerate a new [*Cell*](https://github.com/elusivecodes/FyreView#cells).\r\n\r\n```php\r\n$runner-\u003erun('make:cell', ['Example']);\r\n```\r\n\r\n### Make Cell Template\r\n\r\nGenerate a new [*cell template*](https://github.com/elusivecodes/FyreView#cells).\r\n\r\n```php\r\n$runner-\u003erun('make:cell_template', ['Example.display']);\r\n```\r\n\r\n### Make Command\r\n\r\nGenerate a new [*Command*](https://github.com/elusivecodes/FyreCommand#commands).\r\n\r\n```php\r\n$runner-\u003erun('make:command', ['Example']);\r\n```\r\n\r\n### Make Config\r\n\r\nGenerate a new [*Config*](https://github.com/elusivecodes/FyreConfig) file.\r\n\r\n```php\r\n$runner-\u003erun('make:config', ['example']);\r\n```\r\n\r\n### Make Controller\r\n\r\nGenerate a new [*controller*](https://github.com/elusivecodes/FyreRouter#controller-routes).\r\n\r\n```php\r\n$runner-\u003erun('make:controller', ['Example']);\r\n```\r\n\r\n### Make Element\r\n\r\nGenerate a new [element](https://github.com/elusivecodes/FyreView#elements).\r\n\r\n```php\r\n$runner-\u003erun('make:element', ['example']);\r\n```\r\n\r\n### Make Entity\r\n\r\nGenerate a new [*Entity*](https://github.com/elusivecodes/FyreEntity).\r\n\r\n```php\r\n$runner-\u003erun('make:entity', ['Example']);\r\n```\r\n\r\n### Make Helper\r\n\r\nGenerate a new [*Helper*](https://github.com/elusivecodes/FyreView#helpers).\r\n\r\n```php\r\n$runner-\u003erun('make:helper', ['Example']);\r\n```\r\n\r\n### Make Job\r\n\r\nGenerate a new queue [*Job*](https://github.com/elusivecodes/FyreQueue).\r\n\r\n```php\r\n$runner-\u003erun('make:job', ['Example']);\r\n```\r\n\r\n### Make Lang\r\n\r\nGenerate a new [*language*](https://github.com/elusivecodes/FyreLang) file.\r\n\r\n```php\r\n$runner-\u003erun('make:lang', ['Example']);\r\n```\r\n\r\n### Make Layout\r\n\r\nGenerate a new view [*layout*](https://github.com/elusivecodes/FyreView#layouts) template.\r\n\r\n```php\r\n$runner-\u003erun('make:layout', ['default']);\r\n```\r\n\r\n### Make Middleware\r\n\r\nGenerate a new [*Middleware*](https://github.com/elusivecodes/FyreMiddleware#middleware).\r\n\r\n```php\r\n$runner-\u003erun('make:middleware', ['Example']);\r\n```\r\n\r\n### Make Migration\r\n\r\nGenerate a new [*Migration*](https://github.com/elusivecodes/FyreMigration#migrations).\r\n\r\n```php\r\n$runner-\u003erun('make:migration', ['Example']);\r\n```\r\n\r\n### Make Model\r\n\r\nGenerate a new [*Model*](https://github.com/elusivecodes/FyreORM#models).\r\n\r\n```php\r\n$runner-\u003erun('make:model', ['Example']);\r\n```\r\n\r\n### Make Policy\r\n\r\nGenerate a new [*Policy*](https://github.com/elusivecodes/FyreAuth#policies).\r\n\r\n```php\r\n$runner-\u003erun('make:policy', ['Example']);\r\n```\r\n\r\n### Make Template\r\n\r\nGenerate a new view [*template*](https://github.com/elusivecodes/FyreView).\r\n\r\n```php\r\n$runner-\u003erun('make:template', ['Example.index']);\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felusivecodes%2Ffyremake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felusivecodes%2Ffyremake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felusivecodes%2Ffyremake/lists"}