Rename all the files to camelCase and update the class name in the files

This commit is contained in:
2021-05-07 12:19:08 +02:00
parent 276a5c4cbd
commit c8d275be31
82 changed files with 101 additions and 101 deletions

18
src/Version.php Normal file
View File

@@ -0,0 +1,18 @@
<?php
/** DomFramework
* @package domframework
* @author Dominique Fournier <dominique@fournier38.fr>
* @license BSD
*/
namespace Domframework;
/** This is the version of DomFramework.
* It can be used to test if the framework is uptodate for the application
* with :
* require ("domframework/version.php");
* if (!defined ("DOMFRAMEWORK_VERSION") ||
* version_compare (DOMFRAMEWORK_VERSION, "0.6") < 0)
* die ("Your DomFramework version is too old : 0.6 minimum\n");
*/
define ("DOMFRAMEWORK_VERSION", "0.58");