Aravind Kumar K
Aravind Kumar K

Reputation: 1

Trouble Installing Backpack 6.x in Laravel 10.10: Seeking Resolution

attacch the composer json image alsoi attached the screenshot of the errorI'm facing difficulties while attempting to install the Backpack package in my Laravel project. At present, my Laravel version is "laravel/framework": "^10.10".

The objective is to integrate Backpack version 6.x into my Laravel application. However, throughout the installation process, I'm encountering multiple errors hindering successful integration.

Here are the steps I've taken and the errors encountered:

I initiated the installation process using the command composer require backpack/base. The error message I encountered stated [ - backpack/crud[0.4.1, ..., 0.9.10, 2.0.0, ..., 2.0.24, 3.0.0, ..., 3.0.9] require illuminate/support ~5.1 -> found illuminate/support[v5.1.1, ..., v5.8.36] but these were not loaded, likely because it conflicts with another require. ]. I also attempted to [mention any alternative approaches or adjustments made]. I'm seeking guidance or a solution to overcome these errors and successfully integrate the Backpack package (version 6.x) into my Laravel application, considering the compatibility issues or any necessary adjustments needed.

Thank you for any assistance or insights provided.

Upvotes: 0

Views: 283

Answers (1)

Pedro X
Pedro X

Reputation: 1071

Please use composer require backpack/crud. backpack\base was last used in v3 ? I think ?
It's a very very old package, it shouldn't even be possible to install on Laravel 10.

Please follow the official installation docs: https://backpackforlaravel.com/docs/6.x/installation#install-using-composer

Upvotes: 1

Related Questions