dusterio/lumen-passport

Call to undefined method Laravel\Lumen\Application::configurationIsCached()

filjoseph1989 opened this issue ยท 5 comments

I Just install lumen-passport using

composer require dusterio/lumen-passport

then after just running php artisan

I got this

Call to undefined method Laravel\Lumen\Application::configurationIsCached()

I'm running on the same problem. please help

I also got same problem.

See #106

the laravel/passport package 7.3.2 contains a breaking change. The solution is to downgrade to 7.3.1

See #106

the laravel/passport package 7.3.2 contains a breaking change. The solution is to downgrade to 7.3.1

Thanks bro. it's solved our problem

i have this problem

this is my composer file

please help me


{
    "name": "laravel/lumen",
    "description": "The Laravel Lumen Framework.",
    "keywords": ["framework", "laravel", "lumen"],
    "license": "MIT",
    "type": "project",
    "require": {
        "php": ">=7.1.3",
        "dusterio/lumen-passport": "^0.2.8",
        "guzzlehttp/guzzle": "^6.3",
        "laravel/lumen-framework": "5.7.*",
        "vlucas/phpdotenv": "~2.2"
    },
    "require-dev": {
        "fzaninotto/faker": "~1.4",
        "phpunit/phpunit": "~7.0",
        "mockery/mockery": "~1.0"
    },
    "autoload": {
        "classmap": [
            "database/seeds",
            "database/factories"
        ],
        "psr-4": {
            "App\\": "app/"
        }
    },
    "autoload-dev": {
        "classmap": [
            "tests/"
        ]
    },
    "scripts": {
        "post-root-package-install": [
            "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
        ]
    },
    "config": {
        "preferred-install": "dist",
        "sort-packages": true,
        "optimize-autoloader": true
    },
    "minimum-stability": "dev",
    "prefer-stable": true
}