Skip to content
Advertisement

Issue while running “composer require lorisleiva/laravel-search-string”

I’ve been trying to install lorisleiva/laravel-search-string but I keep on getting this error. Need this library for the search functionality. Even composer update gives the same error. (just the problem 2 in case of update). I have added the composer.json down below as well. Hope this will okay. Need some guidance. enter image description here

`{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
    "framework",
    "laravel"
],
"license": "MIT",
"require": {
    "php": "^7.4",
    "ext-json": "*",
    "asm-laravel-admin-ext/tmeditor": "^1.0",
    "barryvdh/laravel-ide-helper": "^2.7",
    "cartalyst/stripe": "~2.0",
    "darkaonline/l5-swagger": "^7.0",
    "doctrine/dbal": "^2.10",
    "encore/laravel-admin": "^1.7",
    "facade/ignition": "^2.0",
    "fideloper/proxy": "^4.0",
    "fruitcake/laravel-cors": "^2.0",
    "guzzlehttp/guzzle": "^7.0",
    "intervention/image": "^2.5",
    "james.xue/laravel-admin-sortable": "^1.0",
    "laravel-admin-ext/config": "^1.1",
    "laravel-admin-ext/helpers": "^1.2",
    "laravel-admin-ext/log-viewer": "^1.0",
    "laravel-admin-ext/redis-manager": "^1.3",
    "laravel-admin-ext/scheduling": "^1.1",
    "laravel/framework": "^7.0",
    "laravel/helpers": "^1.2",
    "laravel/slack-notification-channel": "^2.1",
    "laravel/socialite": "^4.4",
    "laravel/tinker": "^2.0",
    "laravel/ui": "^2.0",
    "league/flysystem-aws-s3-v3": "^1.0",
    "league/oauth2-client": "^2.4",
    "nazmulb/mac-address-php": "dev-master",
    "phpunit/phpunit": "^8.5",
    "sentry/sentry-laravel": "1.7.1",
    "socialiteproviders/discord": "^2.0.2",
    "socialiteproviders/twitch": "^5.2",
    "stripe/stripe-php": "^7.17",
    "tightenco/ziggy": "^0.9.3",
    "tymon/jwt-auth": "1.0.0"
},
"require-dev": {

    "fzaninotto/faker": "^1.4",
    "mockery/mockery": "^1.0"
},
"config": {
    "optimize-autoloader": true,
    "preferred-install": "dist",
    "sort-packages": true
},
"extra": {
    "laravel": {
        "dont-discover": []
    }
},
"autoload": {
    "psr-4": {
        "App\": "app/"
    },
    "classmap": [
        "database/seeds",
        "database/factories"
    ]
},
"autoload-dev": {
    "psr-4": {
        "Tests\": "tests/"
    }
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
    "post-autoload-dump": [
        "Illuminate\Foundation\ComposerScripts::postAutoloadDump",
        "@php artisan package:discover --ansi"
    ],
    "post-root-package-install": [
        "@php -r "file_exists('.env') || copy('.env.dev', '.env');""
    ],
    "post-create-project-cmd": [
        "@php artisan key:generate --ansi"
    ]
}`

Advertisement

Answer

The given error message tells it all: currently, you have league/oauth1-client installed in v1.7.0 due to any other requirement, and that package is not compatible with guzzlehttp/guzzlev7. You should start checking why that first package got installed through composer why league/oauth1-client – this package has been updated the last time four years ago, and as you also require league/oauth2-client, you could be safe to remove it

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement