Hello, i don't know if this is an issue or not, but when i run the composer command over Lumen 5.3 I get the following:
$ composer require flipbox/lumen-generator
Using version ^5.3 for flipbox/lumen-generator
./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 psy/psysh (locked at v0.8.3) -> satisfiable by psy/psysh[v0.8.3].
- flipbox/lumen-generator 5.3.0 requires psy/psysh ^0.7.2 -> satisfiable by psy/psysh[v0.7.2].
- flipbox/lumen-generator 5.3.1 requires psy/psysh ^0.7.2 -> satisfiable by psy/psysh[v0.7.2].
- flipbox/lumen-generator 5.3.2 requires psy/psysh ^0.7.2 -> satisfiable by psy/psysh[v0.7.2].
- flipbox/lumen-generator 5.3.3 requires psy/psysh ^0.7.2 -> satisfiable by psy/psysh[v0.7.2].
- flipbox/lumen-generator 5.3.4 requires psy/psysh ^0.7.2 -> satisfiable by psy/psysh[v0.7.2].
- Conclusion: don't install psy/psysh v0.7.2
- Installation request for flipbox/lumen-generator ^5.3 -> satisfiable by flipbox/lumen-generator[5.3.0, 5.3.1, 5.3.2, 5.3.3, 5.3.4].
Installation failed, reverting ./composer.json to its original content.
This issue was because a little before I had to install "vluzrmos/tinker": "^1.3". So, to do the installation successfully I had to use the branch dev-develop like this:
Hello, i don't know if this is an issue or not, but when i run the composer command over Lumen 5.3 I get the following:
This issue was because a little before I had to install
"vluzrmos/tinker": "^1.3"
. So, to do the installation successfully I had to use the branch dev-develop like this:Maybe this is not a real issue, but I think may help someone else.
By the way, great contribution, thank you,
AugustoSL