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
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }