framework
framework copied to clipboard
This repository contains the core code of Laravel Zero
Fix this [issue](https://github.com/laravel-zero/laravel-zero/issues/416)
This pr intend to fix issue that prevent scheduler from working as expected Related issues: https://github.com/laravel-zero/laravel-zero/issues/406 https://github.com/laravel-zero/laravel-zero/issues/355
useful command to consolidate the whole migrations in one file ;)
When you create a phar if you don't include a migration file the folder is not included in your distribution binary, this cause an error when you run the `migration`...
When using the Eloquent query builder pagination methods, like this : ```php DB::table('users')->paginate(perPage: 15, page: 1); ``` Laravel tries to acces the `request` binding — and by doing so throws...
Can't do this until the release of Laravel Zero 11 sadly, as Box 4.6 drops support for PHP 8.1 🤔
This depends on https://github.com/laravel-zero/framework/pull/480 to be merged first. 👍🏻 See https://github.com/laravel-zero/framework/commit/477b05c7a90e85160c3b70985e4a695f24646402 for the actual changes. What does this do: - Adds a new `updater.phar_name` config key, that, when set, will...
It appears the fix from https://github.com/laravel-zero/laravel-zero/issues/416 is not working on v10. Currently, adding `Illuminate\Database\Console\WipeCommand::class` to `'remove'` commands config does nothing. With this PR applied, the `db:wipe` command is successfully disabled.
Fixes code style. Also, only one of two used functions are imported, should we import `file_exists` as well?
If you cancel out of the build process, box.json gets wiped. - We can check if the new value for box.json is null, and if so, don't overwrite anything. -...