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.travis 833B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace Mevdschee\PhpCrudApi\Tests;
  3. class Config
  4. {
  5. /**
  6. * Configure one or more database connections as associative arrays.
  7. * Tests will be run against any database connection specified here.
  8. *
  9. * @var array
  10. */
  11. public static $config = array(
  12. 'MySQL' => array(
  13. 'hostname' => 'localhost',
  14. 'username' => 'root',
  15. 'password' => 'travis',
  16. 'database' => 'testing',
  17. ),
  18. 'PostgreSQL' => array(
  19. 'hostname' => 'localhost',
  20. 'username' => 'postgres',
  21. 'password' => '',
  22. 'database' => 'testing',
  23. ),
  24. 'SQLite' => array(
  25. 'hostname' => '',
  26. 'username' => '',
  27. 'password' => '',
  28. 'database' => 'tests/sqlite.db',
  29. ),
  30. );
  31. }