> ## Documentation Index
> Fetch the complete documentation index at: https://watermelon.nathanheffley.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Development

> Here's how you can make Laravel Watermelon even better

Check out our [GitHub](https://github.com/nathanheffley/laravel-watermelon)!

## Package Development

If you have PHP and Composer installed on your local machine you should be able to easily run the PHPUnit test suite.

```
./vendor/bin/phpunit
```

If you prefer to run the tests within a Docker container, this project includes
[Laravel Sail](https://laravel.com/docs/8.x/sail).

To install the dependencies:

```
docker run --rm \
    -u "$(id -u):$(id -g)" \
    -v $(pwd):/opt \
    -w /opt \
    laravelsail/php80-composer:latest \
    composer install --ignore-platform-reqs

docker-compose up -d
```

```
sail exec laravel.test ./vendor/bin/phpunit
```
