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?
相关问题
- Views base64 encoded blob in HTML with PHP
- Laravel Option Select - Default Issue
- PHP Recursively File Folder Scan Sorted by Modific
- Can php detect if javascript is on or not?
- Using similar_text and strpos together
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