kba-team / cake3_app_version
CakePHP 3.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.
Installs: 39
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Type:cakephp-plugin
Requires
- php: >=5.5.9
- cakephp/cakephp: 3.*
- kba-team/version: ^1.0
This package is auto-updated.
Last update: 2024-10-27 01:59:29 UTC
README
CakePHP 3.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 use \kbATeam\AppVersion\Version; echo Version::string();
Installation
- Require the plugin.
composer require kba-team/cake3_app_version
- Include the plugin in your
bootstrap.php
<?php Plugin::load('kbATeam/AppVersion', ['bootstrap' => true, 'routes' => false]);