mirror of
https://github.com/tim-krehan/shopping-list.git
synced 2024-11-23 22:30:41 +01:00
9 lines
180 B
PHP
9 lines
180 B
PHP
<?php
|
|
|
|
$version = json_decode(file_get_contents("version.json"), true);
|
|
// This gives:
|
|
// - $version['version']
|
|
// - $version['version_suffix']
|
|
// - $version['update_channel']
|
|
|
|
?>
|