Replies: 4 comments 2 replies
-
The final Vanilo 4 admin hasn't been released yet, but it's fairly stable, you can safely use it. Add this line to your "minimum-stability": "dev",
"prefer-stable": true
|
Beta Was this translation helpful? Give feedback.
-
Thanks for your reply. I added the lines, but still get the same error.
"name": "laravel/laravel",
"type": "project",
"description": "The skeleton application for the Laravel framework.",
"keywords": ["laravel", "framework"],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"laravel/framework": "^11.0",
"laravel/tinker": "^2.9",
"vanilo/framework": "^4.0"
}, |
Beta Was this translation helpful? Give feedback.
-
composer require vanilo/admin ^4.0 Running composer update vanilo/admin Problem 1 |
Beta Was this translation helpful? Give feedback.
-
I did a clean install, set "minimum-stability": "dev", "prefer-stable": false and it installed successfully. Thanks for all your help. |
Beta Was this translation helpful? Give feedback.
-
Followed the instructions for install:
composer create-project --prefer-dist laravel/laravel vaniloapp ^11.0
cd vaniloapp
composer require vanilo/framework ^4.0
php artisan vendor:publish --provider="Konekt\Concord\ConcordServiceProvider" --tag=config
Then try to install admin and get an error:
composer req vanilo/admin ^4.0
Problem 1
- Root composer.json requires vanilo/admin ^4.0, found vanilo/admin[dev-master, 4.0.x-dev (alias of dev-master)] but it does not match your minimum-stability.
How can I install admin?
Beta Was this translation helpful? Give feedback.
All reactions