问题
I went through few post but didn't find an answer to probably one of most simple questions. What is the standard Propel version that comes bundled with symfony 1.4.11?
In one answer, I found a recommendation to use the awk
command but unfortunately I'm on Windows, so that command will not run for me.
Another answer was to install different Propel Lib; please, no such answers.
回答1:
Simply give a look to the svn repository. Each symfony version are tagged. You will see:
propel http://propel.mirror.svn.symfony-project.com/tags/1.4.2/runtime/classes/propel/
So it uses Propel 1.4.2.
回答2:
As far as I can tell, the answer is Propel 1.4.2. I'm looking at the CHANGELOG file from Symfony 1.4.11 (on the Github mirror). The last change to the Propel version was in Symfony 1.4.5:
05/31/10: Version 1.4.5
-----------------------
[snip]
* [29218] updated Propel to 1.4.2
Edit: indeed this is made clear in the main Propel class on line 93:
const VERSION = '1.4.2';
You can see this in your local system; the file is lib/plugins/sfPropelPlugin/lib/vendor/propel/Propel.php
.
来源:https://stackoverflow.com/questions/12156611/propel-version-with-symfony-1-4-11