laravel / lumen-framework

The Laravel Lumen Framework.
https://lumen.laravel.com
MIT License
1.48k stars 420 forks source link

Add resolve helper necessary for running migrations #1241

Closed kiwigod closed 2 years ago

kiwigod commented 2 years ago

Currently it's not possible to run any sort of migrations due to the missing helper function. This pull request adds the helper function which can also be found in laravel/framework package under path src/Illuminate/Foundation/helpers.php

For reference see the specific function below: https://github.com/laravel/framework/blob/eee833e46de5301aa533ce1b7f5372d375b00fd8/src/Illuminate/Foundation/helpers.php#L701

kiwigod commented 2 years ago

For more context see issue https://github.com/laravel/lumen-framework/issues/1240

taylorotwell commented 2 years ago

Released a fix for this.