If we run composer require marko/blog I get this
Problem 1
- Root composer.json requires marko/blog * -> satisfiable by marko/blog[0.0.1, 0.0.2, 0.1.0].
- marko/blog 0.0.1 requires marko/core 0.0.1 -> found marko/core[0.0.1] but it conflicts with your root composer.json require (^0.1.0).
- marko/blog 0.0.2 requires marko/core 0.0.2 -> found marko/core[0.0.2] but it conflicts with your root composer.json require (^0.1.0).
- marko/blog 0.1.0 requires marko/database 0.1.0 -> found marko/database[dev-main, dev-develop, 0.0.1, 0.0.2] but it does not match the constraint.
and even if we try to composer require marko/database I also get the same issue.
Problem 1
- Root composer.json requires marko/database * -> satisfiable by marko/database[0.0.1, 0.0.2].
- marko/database 0.0.1 requires marko/core 0.0.1 -> found marko/core[0.0.1] but it conflicts with your root composer.json require (^0.1.0).
- marko/database 0.0.2 requires marko/core 0.0.2 -> found marko/core[0.0.2] but it conflicts with your root composer.json require (^0.1.0).
So we need to update the composer.json verions of these modules
If we run
composer require marko/blogI get thisand even if we try to
composer require marko/databaseI also get the same issue.So we need to update the composer.json verions of these modules