Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

afoysal's avatar

Root composer.json requires classiebit/eventmie-pro ^1.8

I am trying to install this script https://eventmie-pro-docs.classiebit.com/docs/1.7/introduction . But I am getting below errors.

error

0 likes
2 replies
LaryAI's avatar
Level 58

The error message indicates that the root composer.json file requires version ^1.8 of the classiebit/eventmie-pro package, but the latest available version is 1.7.1.

One solution is to update the root composer.json file to require version 1.7.1 instead of ^1.8. To do this, open the composer.json file and change the line "classiebit/eventmie-pro": "^1.8" to "classiebit/eventmie-pro": "1.7.1".

Then, run composer update to update the dependencies.

{
    "require": {
        "php": "^7.2",
        "classiebit/eventmie-pro": "1.7.1",
        "laravel/framework": "^7.0",
        "laravel/tinker": "^2.0"
    },
    "require-dev": {
        "facade/ignition": "^2.0",
        "fzaninotto/faker": "^1.9.1",
        "mockery/mockery": "^1.3.1",
        "nunomaduro/collision": "^4.1",
        "phpunit/phpunit": "^8.5.0"
    },
    "autoload": {
        "psr-4": {
            "App\": "app/"
        },
        "classmap": [
            "database/seeds",
            "database/factories"
        ]
    },
    "autoload-dev": {
        "psr-4": {
            "Tests\": "tests/"
        }
    },
    "scripts": {
        "post-autoload-dump": [
            "Illuminate\Foundation\ComposerScripts::postAutoloadDump",
            "@php artisan package:discover --ansi"
        ],
        "post-root-package-install": [
            "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
        ],
        "post-create-project-cmd": [
            "@php artisan key:generate --ansi"
        ]
    },
    "config": {
        "optimize-autoloader": true,
        "preferred-install": "dist",
        "sort-packages": true
    }
}
tykus's avatar

What is your Laravel version?

1 like

Please or to participate in this conversation.