Upgraded initialization system

This commit is contained in:
Pierre
2018-01-02 18:48:39 +01:00
parent 2bfb6fd7d1
commit dced14cf52
10 changed files with 477 additions and 414 deletions

View File

@ -0,0 +1,22 @@
<?php
/**
* Project main config page (common properties)
*
* @author Pierre HUBERT
*/
class Config {
/**
* Application version
*/
const VERSION = "0.1";
/**
* API access and credentials
*/
const API_URL = "http://devweb.local/comunic/api/";
const API_SERVICE_NAME = "ComunicWeb";
const API_SERVICE_TOKEN = "12XU67pJUlnNQ";
}