{"id":37001085,"url":"https://github.com/mpaleo/scaffolder","last_synced_at":"2026-01-14T00:08:09.553Z","repository":{"id":57020485,"uuid":"45801715","full_name":"mpaleo/scaffolder","owner":"mpaleo","description":"Scaffold out a laravel application. Craft your next application easier and faster","archived":false,"fork":false,"pushed_at":"2019-03-02T03:41:01.000Z","size":374,"stargazers_count":16,"open_issues_count":10,"forks_count":8,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-11-16T02:42:08.198Z","etag":null,"topics":["laravel","php","scaffold"],"latest_commit_sha":null,"homepage":"https://mpaleo.github.io/scaffolder","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/mpaleo.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":"2015-11-08T22:18:45.000Z","updated_at":"2023-03-26T08:08:46.000Z","dependencies_parsed_at":"2022-08-23T12:20:33.051Z","dependency_job_id":null,"html_url":"https://github.com/mpaleo/scaffolder","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mpaleo/scaffolder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpaleo%2Fscaffolder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpaleo%2Fscaffolder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpaleo%2Fscaffolder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpaleo%2Fscaffolder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mpaleo","download_url":"https://codeload.github.com/mpaleo/scaffolder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mpaleo%2Fscaffolder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28406481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["laravel","php","scaffold"],"created_at":"2026-01-14T00:08:08.804Z","updated_at":"2026-01-14T00:08:09.524Z","avatar_url":"https://github.com/mpaleo.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel scaffolder\n![Scaffolder for laravel](https://cloud.githubusercontent.com/assets/5132565/11066969/17feb094-87a9-11e5-96cb-1402e4c7aaca.png)\n[![Software license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](LICENSE)\n[![Laravel version](https://img.shields.io/badge/for%20laravel-5.2-orange.svg?style=flat-square)](https://github.com/laravel/framework/tree/5.2)\n[![Waffle board](https://img.shields.io/badge/board-on%20waffle-blue.svg?style=flat-square)](https://waffle.io/mpaleo/scaffolder)\n[![Gitter chat](https://img.shields.io/badge/chat-on%20gitter-blue.svg?style=flat-square)](https://gitter.im/mpaleo/scaffolder)\n\nRemove the headache of creating over and over again the base code for most of your projects.\nYou are free to extend it the way you need. This package only generate things that you need to start, always keeping the code clean and abstract. Are you hungry ? Fork it !\n\n## Installation\n1. Get [laravel](http://laravel.com/docs/5.2#installation) up and running\n2. Add the following packages to your composer.json\n\n    ```json\n    ...\n    \"laravelcollective/html\": \"5.2.*\",\n    \"yajra/laravel-datatables-oracle\": \"~6.0\",\n    \"mpaleo/view-tags\": \"~1.0\",\n    \"mpaleo/scaffolder-theme-material\": \"~1.0\",\n    \"mpaleo/scaffolder\": \"~2.0\",\n    ...\n    ```\n3. Update your packages\n\n    ```bash\n    composer update\n    ````\n4. Add the service providers to the providers array in `{laravel-root}\\config\\app.php`\n\n    ```php\n    ...\n    ViewTags\\ViewTagsServiceProvider::class,\n    ScaffolderTheme\\ScaffolderThemeServiceProvider::class,\n    Scaffolder\\ScaffolderServiceProvider::class,\n    Yajra\\Datatables\\DatatablesServiceProvider::class,\n    ...\n    ```\n5. Add the following aliases in `{laravel-root}\\config\\app.php`\n\n    ```php\n    ...\n    'ViewTags'   =\u003e ViewTags\\ViewTags::class,\n    'Form'       =\u003e Collective\\Html\\FormFacade::class,\n    'Html'       =\u003e Collective\\Html\\HtmlFacade::class,\n    ...\n    ```\n\n## Getting started\nFirst you need to publish the configuration files and assets\n\n```bash\n./artisan vendor:publish --provider=\"Scaffolder\\ScaffolderServiceProvider\"\n./artisan vendor:publish --provider=\"ScaffolderTheme\\ScaffolderThemeServiceProvider\" --force\n```\n\nHere we are using the theme [mpaleo/scaffolder-theme-material](https://github.com/mpaleo/scaffolder-theme-material), but you can fork it, and do whatever you want/need :)\n\nAt this point, you already can start to scaffold things. You have two ways to use the package.\n\n##### Command line way\nWhen you execute the artisan publish command, the service provider creates the folder `{laravel-root}\\scaffolder-config` that has the following structure:\n\n```\n- scaffolder-config\n-- app.json\n-- models\n-- cache\n```\n\nThe `app.json` file contains global settings, also you will get some demo files for models. All you need to scaffold an application is to edit the `app.json` file, and create the json files for the models you want. After you have all the files ready, you have the following commands:\n\nThis command generate the application using the files that you have provided.\n```bash\n./artisan scaffolder:generate\n```\n\nFor instance, when you update the package, you should clear the cache files stored in `{laravel-root}\\scaffolder-config\\cache`\n```bash\n./artisan scaffolder:cache-clear\n```\n\n##### User interface way\nAll you need to do, is go to your `http://{crazyhost}/scaffolder/generator` and fill some inputs :)\n\n##### Next steps\n- Run migrations `./artisan migrate`\n- [Wiki](https://github.com/mpaleo/scaffolder/wiki)\n- [API Docs](http://mpaleo.github.io/scaffolder/api)\n\n## Contributing\nJust let me know your ideas and let's work together\n\n### Coding style\nIt would be great if we follow the PSR-2 coding standard and the PSR-4 autoloading standard.\n\n### License\nThe scaffolder package is licensed under the [MIT license](http://opensource.org/licenses/MIT)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmpaleo%2Fscaffolder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmpaleo%2Fscaffolder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmpaleo%2Fscaffolder/lists"}