Owen Voke

Results 192 comments of Owen Voke

In terms of the foundation, you can compare [`laravel/foundation`](https://github.com/laravel/framework/tree/8.x/src/Illuminate/Foundation) with [`laravel-zero/foundation`](https://github.com/laravel-zero/foundation/tree/main/src/Illuminate/Foundation) which isn't to different. The [actual framework](https://github.com/laravel-zero/framework) is pretty different, so not sure how easy it would be to...

I haven't published v8.74.0 of the foundation yet, so that might be why there are quite a few differences. I think any notable changes are listed in the README: https://github.com/laravel-zero/foundation#notes

Hi, it looks like this was removed accidentally (or intentionally, @nunomaduro?) in this commit [`3b351ca`](https://github.com/laravel-zero/laravel-zero/commit/3b351caf6a78983b92dbd8be939a3b89db55510d#diff-c777e2a3a26868d9f361dcadefdb881c193eac8510b243f39d008b0bfb9878e6L62). I've re-added this in https://github.com/laravel-zero/laravel-zero/commit/f5454bda728c69f078590422b49e244bc3447119. 👍🏻 However, the issues with hiding console commands need to...

Closed as part of v9.1.3 👍🏻 Note: You'll need to add `Illuminate\Foundation\Console\VendorPublishCommand::class` to your `hidden` array in `config/commands.php` 🙂

Does this work when using `null` instead of `''`? 🤔

I thought this was solved by [this code](https://github.com/laravel-zero/framework/blob/7e92a2d11a7d4963753d806b2cef217544198b93/src/Commands/BuildCommand.php#L65) where it should catch the usage of `SIGINT` and call [the `clear()` method](https://github.com/laravel-zero/framework/blob/7e92a2d11a7d4963753d806b2cef217544198b93/src/Commands/BuildCommand.php#L178) which should restore the original Box configuration. 🤔 The...

I guess technically yes, with the component config stuff. However, it would probably still be nice to refactor to a Composer extra-based configuration.

I guess technically you could use the `runCommand()` method which is called by `$this->call()`. The 3rd parameter for that is a `OutputInterface` instance, so you might be able to pass...

I'm not sure that this should be provided out of the box, I'd be happy with this as [a new component](https://github.com/laravel-zero/framework/tree/master/src/Components). But @nunomaduro, what are your thoughts?

I think this is defaulted to `development` because it is replaced with `production` in-place during the build process. I'd say that @mattstauffer's solution is probably the easiest way to resolve...