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 512B

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