{"id":14974491,"url":"https://github.com/sebbaum/generator-laravel-5","last_synced_at":"2025-10-27T09:30:31.707Z","repository":{"id":27029958,"uuid":"112203493","full_name":"sebbaum/generator-laravel-5","owner":"sebbaum","description":"Scaffold Laravel 5.7 applications with ease.","archived":false,"fork":false,"pushed_at":"2023-01-03T19:18:59.000Z","size":915,"stargazers_count":18,"open_issues_count":13,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-09T09:31:20.048Z","etag":null,"topics":["browsersync","laravel5","yeoman","yeoman-generator"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sebbaum.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2017-11-27T14:04:13.000Z","updated_at":"2024-03-19T10:34:07.000Z","dependencies_parsed_at":"2023-01-14T05:50:44.822Z","dependency_job_id":null,"html_url":"https://github.com/sebbaum/generator-laravel-5","commit_stats":null,"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sebbaum%2Fgenerator-laravel-5","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sebbaum%2Fgenerator-laravel-5/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sebbaum%2Fgenerator-laravel-5/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sebbaum%2Fgenerator-laravel-5/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sebbaum","download_url":"https://codeload.github.com/sebbaum/generator-laravel-5/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238471964,"owners_count":19478137,"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":["browsersync","laravel5","yeoman","yeoman-generator"],"created_at":"2024-09-24T13:50:38.578Z","updated_at":"2025-10-27T09:30:31.383Z","avatar_url":"https://github.com/sebbaum.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# generator-laravel-5 [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url]\n\u003e Installs Laravel-5 with a bunch of useful packages and enables BrowserSync\n\n## Installation\n\nFirst, install [Yeoman](http://yeoman.io) and generator-laravel-5 using [npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js](https://nodejs.org/)).\n\n```bash\nnpm install -g yo\nnpm install -g generator-laravel-5\n```\n\nThen generate your new project:\n\n```bash\nyo laravel-5\n```\n\n## Proxy\nYou can choose from where your application is served:\n* php artisan serve (localhost:8000)\n* localhost (Use this, if you serve your application via a webserver (local or remote))\nThe proxy configuration is required for BrowserSync and can be changed in `webpack.mix.js`\n\n## Integrated packages\nThe following packages are integrated in the new Laravel project by default:\n* doctrine/dbal\n* barryvdh/laravel-ide-helper\n* barryvdh/laravel-debugbar (for Laravel \u003c= 5.6.*)\n* barryvdh/laravel-cors\n* phpmetrics/phpmetrics\n* beyondcode/laravel-self-diagnosis\n* laravel/telescope (for Laravel \u003e= 5.7.*)\n* symplify/easy-coding-standard\n\n## Laravel Telescope\nLaravel Telescope is integrated for Laravel 5.7+ applications. Make sure to run the migration manually,\nafter having prepared and configured your database.  \nLaravel Telescope runs with the default configuration. Only `php artisan telescope:install` has been executed\nduring the setup routine. You can open the telescope GUI via: `http(s)://your-domain/telescope`.\n\n## phpmetrics analyzes\nIn order to perform a code analyzes with phpmetrics you can run:\n```\ncomposer analyze\n```\nThis will create a folder named `phpmetrics` and you can get interesting insights by opening\n`phpmetrics/index.html`\n\n## Code style check and fixing\nIn order to have a clean and shiny code style, your generated Laravel 5 application comes with \n[EasyCodingStandard](https://github.com/Symplify/EasyCodingStandard) support.  \nYou can check your code with the following command: `composer run-script ecsCheck`\nThis checks the whole project and applies some basic check configurations.\nYou can tweak the check configuration in the `easy-coding-standard.yml` file.\n\nIn order to fix your code style, you can run `composer run-script ecsFix`.\n\nYou can also run easyCodingStandard and pass other configuration by calling the tool directly:\n```\nvendor/bin/ecs check app --config vendor/symplify/easy-coding-standard/config/clean-code.yml\nvendor/bin/ecs check app --config vendor/symplify/easy-coding-standard/config/clean-code.yml --fix\n```\n\nFor more information, please consult the official \n[documentation](https://github.com/Symplify/EasyCodingStandard/blob/master/README.md).\n\n## phpunit-watcher\nAnother useful php package that is integrated out of the box is spatie/phpunit-watcher. With this tool, \nyou can watch changes in *.php and test files and all your automated tests will be triggered to run.\nYou can start phpunit-watcher with:\n```bash\nvendor/bin/phpunit-watcher watch\n```\nFor more information have a look at the official documentation:\nhttps://github.com/spatie/phpunit-watcher\n\n## Frontend development with browserSync\nIf you serve your application with `php artisan serve` (http://localhost:8000) you have to start\nthis first before you can start watching your files with browserSync.\n\nIn order to have webpack watch your file changes and reload your browser, run `npm run watch`.\nYou have to open your browser an navigate to `http:localhost:3000`\n\n## Git versioning\nIf you want to, you can initialize a local git repository to version your code.\nThis is turned on by default. After scaffolding your new laravel application there is an initial\ncommit in your local repository.\n\n## License\n\nApache-2.0 © [Sebastian Baum](http://www.sebbaum.de)\n\n[npm-image]: https://badge.fury.io/js/generator-laravel-5.svg\n[npm-url]: https://npmjs.org/package/generator-laravel-5\n[travis-image]: https://travis-ci.org/sebbaum/generator-laravel-5.svg?branch=master\n[travis-url]: https://travis-ci.org/sebbaum/generator-laravel-5\n[daviddm-image]: https://david-dm.org/sebbaum/generator-laravel-5.svg?theme=shields.io\n[daviddm-url]: https://david-dm.org/sebbaum/generator-laravel-5\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsebbaum%2Fgenerator-laravel-5","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsebbaum%2Fgenerator-laravel-5","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsebbaum%2Fgenerator-laravel-5/lists"}