flowchart TD
A([Start]) --> B{Did you fix a bug?}
B -->|Yes| C([ **fix** ])
B -->|No| D{Did you change functionality or affect the UI?}
D -->|Yes| E([**feat**])
D -->|No| F{Did you add or change tests?}
F -->|Yes| G([**test**])| # Laravel CI Pipeline | |
| # Description: Run static analysis and tests | |
| # Author: Johnny Walker | |
| # Version: 1.0 | |
| # Date: 27 November 2025 | |
| # Requirements: | |
| # PHP_CodeSniffer - https://github.com/squizlabs/PHP_CodeSniffer | |
| # Custom Codesniffer Config - https://gist.github.com/JohnnyWalkerDesign/aca5ee0d21c12d31440327079ae40c23 | |
| # Larastan - https://github.com/larastan/larastan | |
| # Latest version at: https://gist.github.com/JohnnyWalkerDigital/1b80922a06fb441fb3b44d97ed65b21f |
| // https://mailchimp.com/help/css-hooks-for-customizing-forms | |
| // Container for form | |
| #mc_embed_signup { | |
| #mc-embedded-subscribe-form { | |
| } | |
| div.mc-field-group { |
Here's how set your password reset experience so that the user doesn't have to enter their email address... without altering vendor/core - tested with Laravel 5.8 (should be fine with later versions, too):
Firstly create a new notification for your app:
php artisan make:notification ResetPassword
Then open the newly created file: app\Notifications\ResetPassword.php and make the following changes:
Here's how to overcome this common gotcha: The default password reset system not working out of the box with Laravel 5.x (as you're not sent the user's password), without having to alter altering vendor/core. Here's how to make it work as you'd expect it to without changing any vendor files.
Firstly create a new notification for your app:
php artisan make:notification ResetPassword
Then open the newly created file: app\Notifications\ResetPassword.php and make the following changes:
| -- -------------------------------------------------------------------------- -- | |
| -- in: TppDefine.lua | |
| -- -------------------------------------------------------------------------- -- | |
| -- list of cutscenes available upon returning to mother base | |
| -- ordered by priority | |
| _.MB_FREEPLAY_DEMO_PRIORITY_LIST={ | |
| "GoToMotherBaseAfterQuietBattle", -- quiet's heli fight | |
| "ArrivedMotherBaseAfterQuietBattle", -- quiet's arrival |