-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from CodeWithDennis/add-composer-review
Add composer review script for codebase checks
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,13 @@ DEFAULT_USER_EMAIL="[email protected]" | |
DEFAULT_USER_PASSWORD="password" | ||
``` | ||
|
||
## Composer Review | ||
A composer script `composer review` is available to run the following commands to ensure the codebase is clean and ready for deployment: | ||
```bash | ||
./vendor/bin/pest --parallel | ||
./vendor/bin/pint | ||
./vendor/bin/phpstan analyse | ||
``` | ||
## [Helpers](https://laravel-news.com/creating-helpers) | ||
I've set up a Helper file for you to use in your Laravel app. You can find it at `app\Helpers.php`. This file is ready for you to add your custom helper functions, which Composer will automatically include in your project. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters