Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 file? Should I commit the changes of the file?

like image 481
Sithu Avatar asked Jun 08 '15 02:06

Sithu


1 Answers

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

like image 182
Matteo Avatar answered Nov 02 '22 17:11

Matteo