From fb954a0e0d30f64076837f4adf164e264af6ec25 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Tue, 22 Mar 2016 00:22:40 +0900 Subject: [PATCH] info: Print PHP version, too --- framework/core/src/Debug/Console/InfoCommand.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/framework/core/src/Debug/Console/InfoCommand.php b/framework/core/src/Debug/Console/InfoCommand.php index f0a616def..4f11e779b 100644 --- a/framework/core/src/Debug/Console/InfoCommand.php +++ b/framework/core/src/Debug/Console/InfoCommand.php @@ -48,6 +48,8 @@ class InfoCommand extends AbstractCommand { $this->info('Flarum core '.Application::VERSION); + $this->info('PHP '.PHP_VERSION); + foreach ($this->extensions->getEnabledExtensions() as $extension) { /** @var \Flarum\Extension\Extension $extension */ $name = $extension->getId();