kba-team / cake2_app_version
CakePHP plugin to determine the current version of your application. The version is either taken from the commit.json of the deploy script or from the local clone of the git repository.
Installs: 4 225
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >8.0, <8.4
- cakephp/cakephp: dev-master as 2.10.24
- composer/installers: ^2.2
- kba-team/version: ^2.0
This package is auto-updated.
Last update: 2024-11-03 14:56:27 UTC
README
CakePHP 2.x plugin to determine the current version of your application. The version is either taken from the commit.json of the deploy script or from the local clone of the git repository.
Usage
<?php echo constant('APP_VERSION'); //or echo appVersion();
Installation
- Require the plugin.
composer require kba-team/cake2_app_version
- Include the plugin in your
bootstrap.php
<?php CakePlugin::load('AppVersion', ['bootstrap' => true, 'routes' => false]);