Trying to add this to a new Laravel 7 Project, receiving errors when attempting install, do you have something in the works to support L7? Looks like a simple update in your composer.json file to include "^7.0" would suffice, unless you have internal changes as well.
❯ composer require laravel-frontend-presets/bulma
Using version ^3.0 for laravel-frontend-presets/bulma
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- Installation request for laravel/framework (locked at v7.6.1, required as ^7.0) -> satisfiable by laravel/framework[v7.6.1].
- laravel-frontend-presets/bulma v3.0.0 requires laravel/framework ^6.0 -> satisfiable by laravel/framework[6.x-dev].
- laravel-frontend-presets/bulma v3.0.1 requires laravel/framework ^6.0 -> satisfiable by laravel/framework[6.x-dev].
- laravel-frontend-presets/bulma v3.0.2 requires laravel/framework ^6.0 -> satisfiable by laravel/framework[6.x-dev].
- Conclusion: don't install laravel/framework 6.x-dev
- Installation request for laravel-frontend-presets/bulma ^3.0 -> satisfiable by laravel-frontend-presets/bulma[v3.0.0, v3.0.1, v3.0.2].
Installation failed, reverting ./composer.json to its original content.
Trying to add this to a new Laravel 7 Project, receiving errors when attempting install, do you have something in the works to support L7? Looks like a simple update in your
composer.json
file to include"^7.0"
would suffice, unless you have internal changes as well.