Upgrade
Description
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.
Installation
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:status
If needed, you can publish the config with:
php artisan vendor:publish --tag=upgrade-config
Default configuration:
return [
'folders' => ['.'],
'vendors' => ['laravel-enso'],
];
Features
- Discovers upgrade classes from local folders and configured vendor namespaces.
- Supports package upgrades implemented as PHP classes instead of one-off scripts.
- Sorts upgrades by explicit priority and then by last modified timestamp.
- Supports pre-migration upgrades through the
BeforeMigrationmarker interface. - Supports manual-only upgrades through the
ShouldRunManuallymarker interface. - Supports conditional execution through the
Applicablecontract. - Executes table, data, and post-data migration steps in a controlled sequence.
- Rolls back table changes when a data or post-data migration fails and the upgrade implements rollback support.
- Wraps structure upgrades into permission and role synchronization workflows.
- Provides a status table for debugging pending, manual, or already-ran upgrades.
Usage
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
If an upgrade implements RollbackTableMigration, the package will automatically call rollbackTableMigration() when the data migration or post-data migration phase throws.
API
Commands
enso:upgrade {--manual} {--before-migration}enso:upgrade:status
Core Services
LaravelEnso\Upgrade\Services\FinderLaravelEnso\Upgrade\Services\UpgradeLaravelEnso\Upgrade\Services\DatabaseLaravelEnso\Upgrade\Services\UpgradeStatusLaravelEnso\Upgrade\Services\Structure
Execution Model
The 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.
Contracts
Execution contracts:
UpgradeMigratesTableMigratesDataMigratesPostDataMigrationRollbackTableMigrationMigratesStructure
Execution modifiers:
ApplicableBeforeMigrationPrioritizationShouldRunManually
Helpers
Database inspection helpers:
LaravelEnso\Upgrade\Helpers\TableLaravelEnso\Upgrade\Helpers\Column
DBAL bridge:
LaravelEnso\Upgrade\Services\DBAL\Connection
Discovery Rules
The finder scans:
- configured vendor folders from
enso.upgrade.vendors - configured local folders from
enso.upgrade.folders Upgradesnamespaces derived from each package's PSR-4 autoload root
Structure Upgrades
MigratesStructure upgrades are wrapped by LaravelEnso\Upgrade\Services\Structure, which:
- creates missing permissions
- assigns them to the default role
- assigns non-default permissions only to explicitly listed roles
- can run an additional post-data migration phase
Depends On
Required Enso packages:
laravel-enso/core↗laravel-enso/enums↗laravel-enso/helpers↗laravel-enso/permissions↗laravel-enso/roles↗
External dependencies:
Contributions
are welcome. Pull requests are great, but issues are good too.
Thank you to all the people who already contributed to Enso!