https://github.com/coloredcow/laravel-init
Laravel boilerplate with the best development practices.
https://github.com/coloredcow/laravel-init
Last synced: 5 months ago
JSON representation
Laravel boilerplate with the best development practices.
- Host: GitHub
- URL: https://github.com/coloredcow/laravel-init
- Owner: ColoredCow
- License: mit
- Created: 2021-11-11T07:40:24.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-06T21:09:39.000Z (about 2 years ago)
- Last Synced: 2024-05-11T20:41:08.532Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 987 KB
- Stars: 9
- Watchers: 4
- Forks: 1
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Laravel Boilerplate





[](https://github.com/coloredcow/laravel-init/actions/workflows/coding-standards.yml)### Introduction
:wave: Welcome to Laravel Init - a boilerplate for installing laravel application. It covers:
1. One-liner [shell script](./project-setup.sh) to set up your Laravel project.
2. Pre-commit hooks for [Laravel coding standards](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md). This will lint the code changes during commit. In case coding standard is not followed, it aborts the commit and return warnings.
3. GitHub [Issues](./.github/ISSUE_TEMPLATE/) and [Pull Requests](./.github/PULL_REQUEST_TEMPLATE.md) templates.
4. [GitHub Action](https://github.com/ColoredCow/laravel-init/blob/develop/.github/workflows/coding-standards.yml) for coding standards check:
- PHP CS - PHP coding linter
- ESLint - JavaScript coding linter
- Larastan - Laravel static code analyzer### Installation
1. Clone the repo using the below command
```sh
git clone https://github.com/ColoredCow/laravel-init your_project_name
```
2. Go to the project directory using below command
```sh
cd your_project_name
```
3. Run this command to setup the project
```sh
sh project-setup.sh
```