Should the changes of SymfonyRequirements.php be included in version control?

前端 未结 1 1196
面向向阳花
面向向阳花 2021-01-19 00:34

After running composer update, I got app/SymfonyRequirements.php is updated in my working changes of my symfony 2.7@beta application. What is that

相关标签:
1条回答
  • 2021-01-19 01:28

    The files is used in the check CLI tool that use this files for control the minimal Requirements for Running Symfony. You can find more info in the doc.

    Usually is take into account in a version control system, as you can see in the symfony-standard distribution project on github:

    https://github.com/symfony/symfony-standard

    (of course you can add the files in your custom .gitignore files)

    Hope this help

    0 讨论(0)
提交回复
热议问题