### Install Development Dependencies Source: https://github.com/pestphp/pest-plugin-laravel/blob/3.x/CONTRIBUTING.md Installs the development dependencies required for contributing to the project. This command is essential for setting up your local development environment. ```bash composer install ``` -------------------------------- ### Run All Tests Source: https://github.com/pestphp/pest-plugin-laravel/blob/3.x/CONTRIBUTING.md Executes all tests within the project to ensure code integrity and functionality. This should be run before submitting a pull request. ```bash composer test ``` -------------------------------- ### Run Unit Tests Source: https://github.com/pestphp/pest-plugin-laravel/blob/3.x/CONTRIBUTING.md Executes only the unit tests for the project. This is useful for quickly verifying the behavior of individual components. ```bash composer test:unit ``` -------------------------------- ### Lint Code Source: https://github.com/pestphp/pest-plugin-laravel/blob/3.x/CONTRIBUTING.md Lints the code to ensure it adheres to the project's coding style standards. This is a crucial step before submitting changes. ```bash composer lint ``` -------------------------------- ### Check Types Source: https://github.com/pestphp/pest-plugin-laravel/blob/3.x/CONTRIBUTING.md Performs type checking on the codebase, ensuring type safety and catching potential type-related errors. ```bash composer test:types ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.