This project requires PHP 8.5+ as specified in composer.json.
Install PHP 8.5 alongside your current version:
# macOS with Homebrew
brew install php@8.5
brew link php@8.5 --force
# Verify
php -vIf needed, you can install Pint globally for development:
composer global require laravel/pintThen ensure it's in your PATH:
export PATH="$HOME/.composer/vendor/bin:$PATH"The project uses a pre-commit hook that runs:
yarn lint- Prettier for JS/CSS formattingcomposer lint- Laravel Pint for PHP code style
Make sure both are properly installed before committing.