我怎样才能 print/log 当前安装的 Lumen 的准确版本号?
How can I get and print/log the currently installed exact version number of Lumen?
正如我在 Q-title 中提到的,我想 print/log 当前安装的 Lumen 框架版本,即 Git 中 Lumen thro' Bash 脚本的确切版本号=]Bash 终端或 PHP 任何模型/控制器中的片段。
我最近通过在 composer.json 和 运行 composer update
中提供 "laravel/lumen-framework": "^8.0",
升级了 Lumen。
而且我知道我们可以通过终端或代码中的 php artisan --version
或 App::VERSION();
分别在 Laravel 中获得正确的版本号。
我对 Lumen 不太熟悉,如何才能对 Lumen 做同样的事情?
Lumen 的 Application
class 有一个 public 方法叫做 version()
。
You can see it in the repo here
所以我想说这与您在 Laravel 中所做的完全相同。
正如我在 Q-title 中提到的,我想 print/log 当前安装的 Lumen 框架版本,即 Git 中 Lumen thro' Bash 脚本的确切版本号=]Bash 终端或 PHP 任何模型/控制器中的片段。
我最近通过在 composer.json 和 运行 composer update
中提供 "laravel/lumen-framework": "^8.0",
升级了 Lumen。
而且我知道我们可以通过终端或代码中的 php artisan --version
或 App::VERSION();
分别在 Laravel 中获得正确的版本号。
我对 Lumen 不太熟悉,如何才能对 Lumen 做同样的事情?
Lumen 的 Application
class 有一个 public 方法叫做 version()
。
You can see it in the repo here
所以我想说这与您在 Laravel 中所做的完全相同。