Download the PHP package endeavour-agency/refresh-database-on-demand without Composer
On this page you can find all versions of the php package endeavour-agency/refresh-database-on-demand. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download endeavour-agency/refresh-database-on-demand
More information about endeavour-agency/refresh-database-on-demand
Files in endeavour-agency/refresh-database-on-demand
Package refresh-database-on-demand
Short Description This packages offers a drop-in replacement for Laravel's RefreshDatabase trait, which only refreshes the database when migrations have actually changed.
License MIT
Homepage https://github.com/endeavour-agency/refresh-database-on-demand
Informations about the package refresh-database-on-demand
Refresh Database On Demand
This package offers a drop-in replacement for Laravel's RefreshDatabase trait.
Laravel's default RefreshDatabase
trait always performs a migrate:fresh
at the start of running a single or multiple tests, even when migrations haven't been added or deleted.
When using this package's RefreshDatabaseOnDemand
trait instead, migrate:fresh
will only be called when new migrations have been added or migrations have been deleted. This significantly reduces start-up time of running a single or a set of tests.
Installation
To install the package, simply require it with composer:
Usage
To start using the power of on-demand database refreshing, replace any occurrence of Illuminate\Foundation\Testing\RefreshDatabase
with EndeavourAgency\RefreshDatabaseOnDemand\Traits\RefreshDatabaseOnDemand
.
Before:
After: