{"id":33967814,"url":"https://github.com/webteractive/make-action","last_synced_at":"2025-12-12T23:55:57.734Z","repository":{"id":305617783,"uuid":"1023389517","full_name":"webteractive/make-action","owner":"webteractive","description":"This Laravel package provides a php artisan make:action command to quickly scaffold \"Action\" classes.","archived":false,"fork":false,"pushed_at":"2025-08-25T15:13:43.000Z","size":38,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-02T23:45:40.925Z","etag":null,"topics":[],"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/webteractive.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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,"zenodo":null},"funding":{"github":"Glen Bangkila"}},"created_at":"2025-07-21T05:13:54.000Z","updated_at":"2025-07-31T01:12:40.000Z","dependencies_parsed_at":"2025-07-21T06:35:53.075Z","dependency_job_id":null,"html_url":"https://github.com/webteractive/make-action","commit_stats":null,"previous_names":["webteractive/make-action"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/webteractive/make-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webteractive%2Fmake-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webteractive%2Fmake-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webteractive%2Fmake-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webteractive%2Fmake-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/webteractive","download_url":"https://codeload.github.com/webteractive/make-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/webteractive%2Fmake-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27695634,"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","status":"online","status_checked_at":"2025-12-12T02:00:06.775Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2025-12-12T23:55:57.251Z","updated_at":"2025-12-12T23:55:57.725Z","avatar_url":"https://github.com/webteractive.png","language":"PHP","funding_links":["https://github.com/sponsors/Glen Bangkila"],"categories":[],"sub_categories":[],"readme":"# Laravel make:action Command\n\nThis Laravel package provides a `php artisan make:action` command to quickly scaffold \"Action\" classes. This encourages organized and reusable business logic.\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require webteractive/make-action\n```\n\nYou can publish the config file with:\n\n```bash\nphp artisan vendor:publish --tag=\"make-action-config\"\n```\n\nThis is the contents of the published config file:\n\n```php\n// config for Webteractive/MakeAction\nreturn [\n    'method_name' =\u003e 'handle',\n];\n```\n\n## Usage\n\nTo create a new action class, run the `make:action` Artisan command:\n\n```bash\nphp artisan make:action CreateNewUser\n```\n\nThis will create a new action class at `app/Actions/CreateNewUser.php`:\n\n```php\n\u003c?php\n\nnamespace App\\Actions;\n\nclass CreateNewUser\n{\n    public function handle()\n    {\n        // TODO: Implement the action logic.\n    }\n}\n```\n\nYou can customize the default method name (`handle`) by changing the `method_name` value in the `config/make-action.php` file:\n\n```php\n// config for Webteractive/MakeAction\nreturn [\n    'method_name' =\u003e 'execute',\n];\n```\n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](../../security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n- [Glen Bangkila](https://github.com/)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebteractive%2Fmake-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebteractive%2Fmake-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebteractive%2Fmake-action/lists"}