2020-08-26 11:20:22 +00:00
2022-07-21 14:20:23 +02:00
2020-04-29 11:47:08 +00:00
2023-04-13 22:43:15 +02:00
2022-11-25 21:58:20 +01:00
2017-06-20 13:38:36 +00:00
2018-07-10 14:52:17 +00:00
2017-06-20 13:35:32 +00:00
2022-11-25 21:57:55 +01:00
2014-06-16 13:50:53 +00:00
2023-04-13 22:43:15 +02:00

DomFramework

Introduction

This library is small : one feature in one file. Well tested, developped from 2005 without interruption.

Install from Composer

Create a composer.json file with content :

{
   "name": "mynamespace/my-project-that-uses-composer",
   "repositories": [
       {
           "name": "dominique.fournier/domframework",
           "type": "vcs",
           "url": "https://git.fournier38.fr/Dominique.Fournier/DomFramework.git"
       }
    ],
    "require": {
        "dominique.fournier/domframework": "dev-master"
    }
}

Install the last version : composer install

Then use it :

<?php

require_once ("vendor/autoload.php");

$version = new Domframework\Version();
var_dump($version::version());
Description
DomFramework is a small PHP Framework. Database abstraction, authentication methods, routing, sessions are the keywords
https://domframework.fournier38.fr
Readme 5.1 MiB
Languages
PHP 100%