api de gestion de ticket, basé sur php-crud-api. Le but est de décorrélé les outils de gestion des données, afin
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

config.php.dist 447B

12345678910
  1. <?php
  2. class MySQL_CRUD_API_Config
  3. {
  4. public static $dbengine='mysql'; // 'mysql', 'mssql' or 'pgsql'
  5. public static $hostname='{{test_hostname}}'; // 'localhost' for mysql or '(Local)' for mssql
  6. public static $username='{{test_username}}'; // May be empty on mssql
  7. public static $password='{{test_password}}'; // May be empty on mssql
  8. public static $database='{{test_database}}'; // NB: Use an empty database, data will be LOST!
  9. }