> 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 auto-fix the code — PHP (ECS, PHP-CS-Fixer, Rector, TLint) and the frontend (oxlint, oxfmt) — run:
just lintStatic analysis runs separately with just quality (PHPStan / Larastan). Make sure both pass
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.
