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个字符

.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