#!/usr/bin/env php add(new Console\Command\DatabaseInstallCommand); $application->add(new Console\Command\DatabaseMigrateCommand); $application->add(new Console\Command\DatabaseResetCommand); $application->add(new Console\Command\DatabaseRollbackCommand); $application->add(new Console\Command\DatabaseStatusCommand); $application->add(new Console\Command\ChangeDisplayNameCommand); $application->add(new Console\Command\ServeCommand); $application->add(new Console\Command\SetupCommand); $application->add(new Console\Command\JavascriptBuilderCommand); // Run the application $application->run();