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
}
}
