nibiru framework v0.9.7 - added a new README.md to have a better understanding for the framework itself, added a versioning system with version numbers.

This commit is contained in:
stephan.kasdorf
2023-08-17 16:16:49 +02:00
parent c4a68a3008
commit d193cecac9
3 changed files with 15 additions and 160 deletions

15
core/i/version.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace Nibiru\Adapter;
/**
* interface IVersion
* @project Nibiru Framework
* @desc This is a PHP interface file, please specify the use
* @author Stephan Kasdorf
* @date 17.08.23
* @time 11:25
* @package Nibiru\Adapter
*/
interface IVersion
{
const NIBIRU_VERSION = "0.9.7";
}