Draft: PHPUnit: run in memory - do not destroy the database anymore
IMPORTANTE: C'è probabilmente bisogno di Laravel 11 per far funzionare PHPUnit in memoria senza crash
PHPUnit now runs in memory, without destroying the database anymore.
As a consequence, I've installed 'doctrine/dbal' to avoid this error:
$ docker compose run web php artisan test
Changing columns for table "refunds" requires Doctrine DBAL. Please install the doctrine/dbal package.
So:
$ docker compose run web composer require doctrine/dbal
Closes #183 (closed)