Zizaco / entrust

Role-based Permissions for Laravel 5
MIT License
6.05k stars 1.29k forks source link

Lumen 5.4 There are no commands defined in the "vendor" namespace. #805

Open n0490b opened 7 years ago

n0490b commented 7 years ago

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

1) Add "zizaco/entrust": "5.2.x-dev" to composer.json

2) Add $app->register(Zizaco\Entrust\EntrustServiceProvider::class); too app.php

3) composer update

4) 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);
    }
}

5) Add this to composer.json

        "autoload": {
            "files": [
                "app/helpers.php"
            ]
        }

6) Comment out //$this->bladeDirectives(); in EntrustServiceProvider.php

7) Changed the publish function to

        $this->publishes([
            -            __DIR__.'/../config/config.php' => config_path('entrust.php'),
            +            __DIR__.'/../config/config.php' => app()->basePath() . '/config/entrust.php',
        ]);

8) composer dump-autoload -o

9) 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()  
jsdecena commented 7 years ago

There is really no vendor:publish in Lumen. Try this package: https://github.com/laravelista/lumen-vendor-publish

abdulmanan7 commented 5 years ago

any alternative to this library? it's abandoned

mntdragon commented 5 years ago

There are no plans to add such a command for Lumen. If you need a command to publish files, just use Laravel.

Leamsi9 commented 4 years ago

any alternative to this library? it's abandoned

It's not abandoned as of today. Last update was less than a month ago, and I just tried it and it works fine.

mithublue commented 3 years ago

Use this package : https://github.com/irazasyed/larasupport