> Related Projects ................................................................. > Installation ..................................................................... > Linting .......................................................................... > Tests ............................................................................ > Documentation ....................................................................
- Any related project
Clone and set up the project:
git clone git@github.com:mindtwo/laravel-starter-kit.git your-project-name
cd your-project-name
just --list # Check out available tasks
just setupYour application should now be running at https://your-project-name.test.
Make sure you read the getting started guide.
To lint (and fix) your PHP code, run the following command:
just lintMake sure your code passes before pushing, since otherwise the build will fail and your pull request won't be merged.
Run the tests with just test. This will run both unit and integration tests. A code coverage
report can be generated with just coverage. This will take significantly longer than just
running the tests normally.
The documentation can be found at mindtwo.github.io/laravel-starter-kit.
