我如何为旧版本的Symfony安装注释和分析器?

问题描述 投票:0回答:1

[当我尝试为Symfony 4安装注释或分析器时

撰写者需要注释

composer require --dev profiler

他使用版本5安装,但出现此问题

enter image description here

注意:我不想升级到版本5。我对4.0.13版很满意

php symfony annotations composer-php
1个回答
1
投票

您可以在命令的末尾添加:version,例如,使用此命令:

composer require annotations:1.7.0

composer require --dev profiler:1.0.3

然后查看哪个版本适合您的symfony版本:

https://github.com/doctrine/annotations/releases

https://github.com/symfony/profiler-pack/releases

© www.soinside.com 2019 - 2024. All rights reserved.