Where in the Kohana framework can I find out the version information?
Everything I look at in the tutorials opposes to what I view in my application. I believe this to be a version issue as the methods and calls are slightly different between the documentation and my install.
For Kohana 2.x look for KOHANA_VERSION in system/core/Bootstrap.php
At least for versions >= 3.0, the version number for Kohana is located in
system/classes/kohana/core.php
.It will be in this form:
Since that's just a constant, you can access it through php with
Kohana::VERSION
.Check out these constants in the Kohana class:
So Kohana::VERSION and Kohana::CODENAME.
The file you are looking for is
system/classes/kohana/core.php
.