Level 1
Fixed the error by installing this package and than installing entrust
I am trying to install using Lumen 5.4 but I keep getting this error There are no commands defined in the "vendor" namespace..
Steps I have taken
Add "zizaco/entrust": "5.2.x-dev" to composer.json
Add $app->register(Zizaco\Entrust\EntrustServiceProvider::class); too app.php
composer update
Create this helpers.php file
if ( ! function_exists('config_path'))
{
/**
* Get the configuration path.
*
* @param string $path
* @return string
*/
function config_path($path = '')
{
return app()->basePath() . '/config' . ($path ? '/' . $path : $path);
}
}
"autoload": {
"files": [
"app/helpers.php"
]
}
Comment out //$this->bladeDirectives(); in EntrustServiceProvider.php
Changed the publish function to
$this->publishes([
- __DIR__.'/../config/config.php' => config_path('entrust.php'),
+ __DIR__.'/../config/config.php' => app()->basePath() . '/config/entrust.php',
]);
composer dump-autoload -o
php artisan vendor:publish
Error
Fatal error: Call to undefined function Zizaco\Entrust\config_path() in /Users/API/vendor/zizaco/entrust/src/Entrust/EntrustServiceProvider.php on line 31
[Symfony\Component\Debug\Exception\FatalErrorException]
Call to undefined function Zizaco\Entrust\config_path()
Fixed the error by installing this package and than installing entrust
Please or to participate in this conversation.