symfony4 无法打开输入文件:bin/symfony_requirements
symfony4 Could not open input file: bin/symfony_requirements
我正在按照这些说明部署 Symfony4 项目:
https://symfony.com/doc/current/deployment.html#common-post-deployment-tasks
说:
A. Check Requirements
Check if your server meets the requirements by running:
$ php bin/symfony_requirements
而且它不起作用。
$ php bin/symfony_requirements
Could not open input file: bin/symfony_requirements
app/console是否必须以不同的方式完成?
我认为您应该阅读此文档; https://symfony.com/doc/current/reference/requirements.html
cd your-project/
composer require requirements-checker
检查命令控制台的要求
需求检查器工具将脚本添加到您的 Composer 配置以自动检查需求。无需执行任何命令;如果有任何问题,您将在控制台输出中看到它们。
我正在按照这些说明部署 Symfony4 项目:
https://symfony.com/doc/current/deployment.html#common-post-deployment-tasks
说:
A. Check Requirements
Check if your server meets the requirements by running:
$ php bin/symfony_requirements
而且它不起作用。
$ php bin/symfony_requirements
Could not open input file: bin/symfony_requirements
app/console是否必须以不同的方式完成?
我认为您应该阅读此文档; https://symfony.com/doc/current/reference/requirements.html
cd your-project/
composer require requirements-checker
检查命令控制台的要求
需求检查器工具将脚本添加到您的 Composer 配置以自动检查需求。无需执行任何命令;如果有任何问题,您将在控制台输出中看到它们。