{"id":13554256,"url":"https://github.com/pipe-dream/laravel-create","last_synced_at":"2026-01-14T00:49:46.276Z","repository":{"id":57041836,"uuid":"188390397","full_name":"pipe-dream/laravel-create","owner":"pipe-dream","description":"Create Laravel projects really fast","archived":true,"fork":false,"pushed_at":"2020-10-05T16:59:31.000Z","size":14547,"stargazers_count":1305,"open_issues_count":13,"forks_count":106,"subscribers_count":38,"default_branch":"master","last_synced_at":"2025-10-18T06:25:35.860Z","etag":null,"topics":["code-generation","composer-package","laravel","pipe-dream"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pipe-dream.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-05-24T09:08:43.000Z","updated_at":"2025-09-11T11:57:59.000Z","dependencies_parsed_at":"2022-08-24T00:51:06.465Z","dependency_job_id":null,"html_url":"https://github.com/pipe-dream/laravel-create","commit_stats":null,"previous_names":[],"tags_count":69,"template":false,"template_full_name":null,"purl":"pkg:github/pipe-dream/laravel-create","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pipe-dream%2Flaravel-create","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pipe-dream%2Flaravel-create/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pipe-dream%2Flaravel-create/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pipe-dream%2Flaravel-create/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pipe-dream","download_url":"https://codeload.github.com/pipe-dream/laravel-create/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pipe-dream%2Flaravel-create/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28407048,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T00:40:43.272Z","status":"ssl_error","status_checked_at":"2026-01-14T00:40:42.636Z","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":["code-generation","composer-package","laravel","pipe-dream"],"created_at":"2024-08-01T12:02:43.363Z","updated_at":"2026-01-14T00:49:46.251Z","avatar_url":"https://github.com/pipe-dream.png","language":"PHP","funding_links":["https://www.patreon.com/ajthinking"],"categories":["PHP"],"sub_categories":[],"readme":"\n[![Latest Stable Version](https://img.shields.io/packagist/v/pipe-dream/laravel-create.svg)](https://packagist.org/packages/pipe-dream/laravel-create)\n[![Total Downloads](https://img.shields.io/packagist/dt/pipe-dream/laravel.svg)](https://packagist.org/packages/pipe-dream/laravel)\n[![License](https://img.shields.io/packagist/l/pipe-dream/laravel-create.svg)](https://packagist.org/packages/pipe-dream/laravel-create)\n\n\nCreate new web projects really fast. By  giving Pipe Dream a minimum of input in form of a sketch/entity list it will predict your application schema and feed it into a set of pipes. These pipes will generate all the files needed to get started really quick.\n\n\u003ca href=\"https://www.youtube.com/watch?v=doUlmZdvP1o\" target=\"_blank\"\u003e\n\u003cimg src=\"src/public/img/video_splash_joke.png\" width=\"600\" /\u003e\n\u003c/a\u003e\n\n## Installation\n\nInstall Pipe Dream\n```bash\ncomposer require --dev pipe-dream/laravel-create\n```\n\nInstall the Laravel File Factory\n```bash\nnpm install --dev @pipe-dream/laravel-file-factory\n```\nMore File Factories can be found [here](https://github.com/topics/pipe-dream-file-factory)\n\nBuild Pipe Dream\n```bash\nphp artisan pipedream:build\n```\n\nThats it, now open your browser and go to `/pipe-dream` and start designing.\n\n## Usage\nIf you havent already, [watch the 2 minute video](https://www.youtube.com/watch?v=doUlmZdvP1o).\n\n* List your models and tables in the sketch window. Note the schema is created in real-time and is being displayed on the right side of the screen.\n\n\u003ckbd\u003e\u003cimg src=\"src/public/img/screenshots/design.png\" /\u003e\u003c/kbd\u003e\n\n* Here are some pointers on the sketch syntax\n```js\n// use PascalCase for models\nGarage\nlocation\ncapacity\n\n// Separate your entities into chunks\nCar\ncolor\nuser_id // foreign key\n\n// use snake_case model1_model2 to setup a ManyToMany relationship\ncar_garage \n\n// use button to add a default user system\nUser \nname\nemail\nemail_verified_at\npassword\nremember_token\n\n// use snake_case to create a table\npassword_resets\nemail\ntoken\n```\n\n * Review the list of files that are going to be created.\n\n\u003ckbd\u003e\u003cimg src=\"src/public/img/screenshots/review.png\" /\u003e\u003c/kbd\u003e\n\n* Commit the files to disk.\n\n\u003ckbd\u003e\u003cimg src=\"src/public/img/screenshots/build.png\" /\u003e\u003c/kbd\u003e\n\n* You are now ready to migrate and seed. Go ahead and check out the API (at `/api`), that contains placeholder values \n\n\u003ckbd\u003e\u003cimg src=\"src/public/img/screenshots/api.png\" width=\"400\" /\u003e\u003c/kbd\u003e\n\n## Contributing\nPRs and issues are welcome. In addition to the issue section we have a [Trello board](https://trello.com/b/R11mhfdy/pipe-dream) listing things that we need help with.\nTo get started and to learn more about the platform check out [pipe-dream/docs](https://github.com/pipe-dream/docs)\n\n## License\nMIT\n\n## Stay tuned!\nFollow me on twitter: [@ajthinking](https://twitter.com/ajthinking)\n\n\u003ca href=\"https://www.patreon.com/ajthinking\" \u003eHelp me continue this work | Patreon\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpipe-dream%2Flaravel-create","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpipe-dream%2Flaravel-create","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpipe-dream%2Flaravel-create/lists"}