Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

makapaka's avatar

Installed Lumen 5.5 and it gave me php 5.6 instead of php7 ?

So I needed to install Lumen < 5.6 because our deployment servers are running php 7.0 instead of 7.1, however it seems to have installed Lumen 5.5 but with php 5.6 !?

Am I looking at it incorrectly ? The composer.json is showing:

  "require": {
    "php": ">=5.6.4",
    "laravel/lumen-framework": "5.5.*",
    "vlucas/phpdotenv": "~2.2"
   },

Why would it do that ? Can I specify the version at install ? Or is this simply saying it needs php AT LEAST 5.6 ?

0 likes
1 reply
bobbybouwmann's avatar

Yes, it requires at least 5.6.4, but any newer version is fine as well. So you can run lumen5.5 in php7.0 and php7.1 if you wish ;)

1 like

Please or to participate in this conversation.