LaraBug / LaraBug

Laravel error reporting tool
https://www.larabug.com
MIT License
267 stars 58 forks source link

Laravel 11 install dep error #96

Open maxleistner opened 1 week ago

maxleistner commented 1 week ago

I get the following dep error trying to install Larabug on Laravel 11:

larabug/larabug[1.0, ..., 1.4.2, 2.0, ..., 2.0.1] require guzzlehttp/guzzle ~6.0 -> found guzzlehttp/guzzle[6.0.0, ..., 6.5.8] but these were not loaded, likely because it conflicts with another require.
    - larabug/larabug[2.1, ..., 2.1.1] require guzzlehttp/guzzle ^6.0.2 -> found guzzlehttp/guzzle[6.0.2, ..., 6.5.8] but these were not loaded, likely because it conflicts with another require.
    - larabug/larabug 2.1.2 requires illuminate/support 5.8.*|^6.0|^7.0 -> found illuminate/support[v5.8.0, ..., v5.8.36, v6.0.0, ..., v6.20.44, v7.0.0, ..., v7.30.6] but these were not loaded, likely because it conflicts with another require.
    - larabug/larabug[2.2, ..., 2.3] require illuminate/support ^5.8|^6.0|^7.0|^8.0 -> found illuminate/support[v5.8.0, ..., v5.8.36, v6.0.0, ..., v6.20.44, v7.0.0, ..., v7.30.6, v8.0.0, ..., v8.83.27] but these were not loaded, likely because it conflicts with another require.
    - larabug/larabug[2.3.1, ..., 2.4.2] require illuminate/support ^5.5|^5.6|^5.7|^5.8|^6.0|^7.0|^8.0 -> found illuminate/support[v5.5.0, ..., v5.8.36, v6.0.0, ..., v6.20.44, v7.0.0, ..., v7.30.6, v8.0.0, ..., v8.83.27] but these were not loaded, likely because it conflicts with another require.
    - larabug/larabug[2.4.3, ..., 2.4.4] require illuminate/support ^6.0|^7.0|^8.0 -> found illuminate/support[v6.0.0, ..., v6.20.44, v7.0.0, ..., v7.30.6, v8.0.0, ..., v8.83.27] but these were not loaded, likely because it conflicts with another require.
    - larabug/larabug[2.5, ..., 2.5.3] require illuminate/support ^6.0 || ^7.0 || ^8.0 || ^9.0 -> found illuminate/support[v6.0.0, ..., v6.20.44, v7.0.0, ..., v7.30.6, v8.0.0, ..., v8.83.27, v9.0.0, ..., v9.52.16] but these were not loaded, likely because it conflicts with another require.
    - larabug/larabug 3.0 requires illuminate/support ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 -> found illuminate/support[v6.0.0, ..., v6.20.44, v7.0.0, ..., v7.30.6, v8.0.0, ..., v8.83.27, v9.0.0, ..., v9.52.16, v10.0.0, ..., v10.48.8] but these were not loaded, likely because it conflicts with another require.
    - Root composer.json requires larabug/larabug * -> satisfiable by larabug/larabug[1.0, ..., 1.4.2, 2.0, ..., 2.5.3, 3.0].

my composer req:

"require": {
        "php": "^8.2",
        "doctrine/dbal": "^4.0",
        "filament/filament": "^3.2",
        "firebase/php-jwt": "^6.10",
        "laravel/framework": "^11.0",
        "laravel/jetstream": "^5.0",
        "laravel/sanctum": "^4.0",
        "laravel/tinker": "^2.9",
        "livewire/livewire": "^3.0",
        "pdfgeneratorapi/php-client": "^4.0"
    },
    "require-dev": {
        "barryvdh/laravel-debugbar": "^3.12",
        "fakerphp/faker": "^1.23",
        "laravel-lang/common": "^6.1",
        "laravel/pint": "^1.13",
        "laravel/sail": "^1.26",
        "mockery/mockery": "^1.6",
        "nunomaduro/collision": "^8.0",
        "phpunit/phpunit": "^10.5",
        "spatie/laravel-ignition": "^2.4"
    },
Glennmen commented 1 week ago

This is expected currently, there is no release version with Laravel 11 yet. Need to fix an other issue first.

But you can use the current master branch instead, this already has L11 support.