K.Igor
K.Igor

Reputation: 193

unisharp/laravel-ckeditor on Laravel 8+ cannot install package

I'm trying to install ckeditor on my Laravel 8+ project, but can't. I have the errors:

Problem 1:

this is the errors

I've tried install version 4.7.2 and 5.0, but that still not working.

Is someone know how to solve this problem?

Upvotes: 3

Views: 2855

Answers (4)

Fahazhussain
Fahazhussain

Reputation: 1

i ran in to the same problem using`

composer require unisharp/laravel-ckeditor

then i used $ composer require ckeditor/ckeditor and it solved it

Upvotes: 0

Jordan Emmanuel
Jordan Emmanuel

Reputation: 301

To install ckeditor on Laravel 8+ project. If you already have npm installed then use this line:

$ npm install ckeditor4

Then execute the following command:

$ npm update

Upvotes: 0

Malith Senanayake
Malith Senanayake

Reputation: 466

I had the same problem. The command composer require ckeditor/ckeditor worked for me.

Upvotes: 3

Nico Haase
Nico Haase

Reputation: 12131

unisharp/laravel-ckeditor has seen it's latest release in Nov 2017, more than three years ago. As the error message tells you: this package is not compatible with current versions of Laravel. Either downgrade Laravel to v5 (not recommended), search for another package providing such functionality, or fork the package to provide the neccessary updates.

Upvotes: 0

Related Questions