Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions bin/ef
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ use Symfony\Component\Console\Application;
use EntityForge\Console\GenerateCommand;
use EntityForge\Console\GenerateAllCommand;
use EntityForge\Console\MigrateCommand;
use EntityForge\Console\MigrateAllTenantsCommand;
use EntityForge\Console\RollbackCommand;
use EntityForge\Console\TenantCreateCommand;

Expand All @@ -15,6 +16,7 @@ $application = new Application('EntityForge CLI', '1.0');
$application->addCommand(new GenerateCommand());
$application->addCommand(new GenerateAllCommand());
$application->addCommand(new MigrateCommand());
$application->addCommand(new MigrateAllTenantsCommand());
$application->addCommand(new RollbackCommand());
$application->addCommand(new TenantCreateCommand());

Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"php": "^8.4",
"symfony/yaml": "^8.1",
"symfony/console": "^8.1",
"ext-pdo": "*"
"ext-pdo": "*",
"nikic/fast-route": "^1.3",
"symfony/process": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
Expand Down
Loading
Loading