Issues Installing Version 2.x of Filament

What I am trying to do:
I'm attempting to install the 2.x version of Filament in my Laravel project

What I did:
I ran composer require filament/filament:"^2.0.0" to get the latest 2.x version

My issue/the error:
The Composer returns an error stating "Your requirements could not be resolved to an installable set of packages." It seems to be unable to find a matching version for the 2.x series of Filament. I'm attaching the error screenshot

Code:
Here's the relevant part of my composer.json:

    "require": {
        "php": "^8.1",
        "guzzlehttp/guzzle": "^7.2",
        "laravel/framework": "^10.10",
        "laravel/sanctum": "^3.3",
        "laravel/tinker": "^2.8",
        "livewire/livewire": "2.11.0"
    },
    "require-dev": {
        "fakerphp/faker": "^1.9.1",
        "laravel/pint": "^1.0",
        "laravel/sail": "^1.18",
        "mockery/mockery": "^1.4.4",
        "nunomaduro/collision": "^7.0",
        "phpunit/phpunit": "^10.1",
        "spatie/laravel-ignition": "^2.0"
    },
Composerv2problem.PNG
Was this page helpful?