Owen Voke

Results 192 comments of Owen Voke

I think where you have to overwrite the `command.migrate` value, you'd need to instead use: ```php $this->app->singleton(Illuminate\Database\Console\Migrations\MigrateCommand::class, function ($app) { return new App\Console\Commands\MigrateCommand($app['migrator']); }); ``` However, I haven't tested this...

I was trying to work this out the other day, you can add the following into your `AppServiceProvider` as a temporary workaround. https://github.com/owenvoke/rugby-schedule/blob/main/app/Providers/AppServiceProvider.php#L18-L22 However, it seems that this command doesn't...

Hmm. I've definitely tried to think of a good way to implent this before. I've only used the `app.key` property once before in a Laravel Zero app (as it's only...

Interesting. I think this only applies to `app.*` settings, however I do the same thing (except I just put them in another config file). For example, with the [Oh Dear...

Yeah, it's only for the `config/app.php`

Looks like we'll need to add support for Flysystem 2.x, not sure why I hadn't done this already. 👍🏻 Actually, following Laravel, this would be a feature for Laravel Zero...

@DRN88, you can use FTP in v1 as well, either directly through [Laravel](https://laravel.com/docs/8.x/filesystem#ftp-driver-configuration) or using the [Flysystem FTP adapter](https://flysystem.thephpleague.com/v1/docs/adapter/ftp). When Laravel 9 releases (January 2022), we will also create a...

Just looking back through some issues for Laravel Zero. This seems like a really easy issue to fix. 👍 I've created a dev branch which implements this functionality. Basically, you...

Fair enough, however I personally think it might be good to load other commands in some situations (i.e. if a user wants to run `app:build` to create a Phar, or...

If we used that class @peterjaap, I guess we could just assume that they don't want to run any hidden/other commands. 🤷