laravel-enso/upgrade is a Laravel package for helper classes dependency for laravel enso.
It currently has 1 GitHub stars and 37.779 downloads on Packagist (latest version 2.14.5).
Install it with composer require laravel-enso/upgrade.
Discover more Laravel packages by laravel-enso
or browse all Laravel packages to compare alternatives.
Last updated
Upgrade orchestrates both package-level upgrade routines across the Laravel Enso ecosystem and local project upgrade routines defined inside the host application.
It discovers upgrade classes from the application and from configured vendor packages, sorts them by priority and last modification date, and executes them through a consistent pipeline that supports table migrations, data migrations, post-data migration steps, rollback hooks, manual-only upgrades, and before-migration upgrades.
The package also includes a structure-upgrade adapter for permission and role provisioning, plus a status command that reports upgrade applicability, execution mode, ordering, and migration state.
This package is normally installed as part of the Enso core stack.
For standalone installation in an Enso-based application:
composer require laravel-enso/upgrade
The package registers:
enso:upgradeenso:upgrade:statusIf needed, you can publish the config with:
php artisan vendor:publish --tag=upgrade-config
Default configuration:
return [
'folders' => ['.'],
'vendors' => ['laravel-enso'],
];
BeforeMigration marker interface.ShouldRunManually marker interface.Applicable contract.Run all applicable upgrades:
php artisan enso:upgrade
Run manual upgrades as well:
php artisan enso:upgrade --manual
Run only upgrades meant to execute before the main database migration flow:
php artisan enso:upgrade --before-migration
Inspect the current upgrade inventory and status:
php artisan enso:upgrade:status
A minimal upgrade class can implement MigratesTable:
use Illuminate\Support\Facades\Schema;
use LaravelEnso\Upgrade\Contracts\MigratesTable;
class AddStatusColumn implements MigratesTable
{
public function isMigrated(): bool
{
return Schema::hasColumn('orders', 'status');
}
public function migrateTable(): void
{
Schema::table('orders', function ($table) {
$table->string('status')->nullable();
});
}
}
Structure upgrades can declare permissions and optional roles:
use LaravelEnso\Upgrade\Contracts\MigratesStructure;
use LaravelEnso\Upgrade\Traits\StructureMigration;
class OrdersStructureUpgrade implements MigratesStructure
{
use StructureMigration;
protected array $permissions = [
['name' => 'orders.index', 'description' => 'List orders', 'is_default' => true],
];
protected array $roles = ['admin'];
}
::: tip Tip
If an upgrade implements RollbackTableMigration, the package will automatically call rollbackTableMigration() when the data migration or post-data migration phase throws.
:::
enso:upgrade {--manual} {--before-migration}enso:upgrade:statusLaravelEnso\Upgrade\Services\FinderLaravelEnso\Upgrade\Services\UpgradeLaravelEnso\Upgrade\Services\DatabaseLaravelEnso\Upgrade\Services\UpgradeStatusLaravelEnso\Upgrade\Services\StructureThe current execution pipeline is split into three phases:
migrateTable()migrateData()migratePostDataMigration()Only the migrateData() phase is wrapped in a database transaction.
migrateTable() and migratePostDataMigration() run outside the transaction boundary. If either the data migration or the post-data migration phase fails, and the upgrade implements RollbackTableMigration, the package calls rollbackTableMigration() to undo the table changes explicitly.
Execution contracts:
UpgradeMigratesTableMigratesDataMigratesPostDataMigrationRollbackTableMigrationMigratesStructureExecution modifiers:
ApplicableBeforeMigrationPrioritizationShouldRunManuallyDatabase inspection helpers:
LaravelEnso\Upgrade\Helpers\TableLaravelEnso\Upgrade\Helpers\ColumnDBAL bridge:
LaravelEnso\Upgrade\Services\DBAL\ConnectionThe finder scans:
enso.upgrade.vendorsenso.upgrade.foldersUpgrades namespaces derived from each package's PSR-4 autoload rootMigratesStructure upgrades are wrapped by LaravelEnso\Upgrade\Services\Structure, which:
Required Enso packages:
laravel-enso/core ↗laravel-enso/enums ↗laravel-enso/helpers ↗laravel-enso/permissions ↗laravel-enso/roles ↗External dependencies:
are welcome. Pull requests are great, but issues are good too.
Thank you to all the people who already contributed to Enso!