Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find out the version number in cakephp v3.0?

I have a set of code using cakephp v3 but don't know exactly which version of 3 it is based on. How can I find this out?

EDIT: There is a somewhat duplicate question but not exactly the same. This question relates specifically to ver3

like image 431
guagay_wk Avatar asked Dec 10 '22 20:12

guagay_wk


1 Answers

The version can be found in

vendor\cakephp\cakephp\VERSION.txt

OR

echo Configure::version();

like image 192
guagay_wk Avatar answered Jan 10 '23 15:01

guagay_wk