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.

.travis.yml 431B

123456789101112131415161718192021222324
  1. dist: trusty
  2. sudo: false
  3. language: php
  4. addons:
  5. postgresql: "9.4"
  6. php:
  7. - 5.4
  8. - 5.5
  9. - 5.6
  10. - 7.0
  11. - 7.1
  12. before_install:
  13. - phpenv config-add travisphp.ini
  14. - psql -c 'create database testing;' -U postgres
  15. - mysql -e 'CREATE DATABASE testing;'
  16. - cp tests/Config.php.travis tests/Config.php
  17. script:
  18. - curl https://phar.phpunit.de/phpunit-4.8.phar -L -o phpunit.phar && chmod +x phpunit.phar
  19. - php phpunit.phar