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

12345678910111213141516171819202122232425
  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. - psql -U postgres -c "create extension postgis"
  16. - mysql -e 'CREATE DATABASE testing;'
  17. - cp tests/Config.php.travis tests/Config.php
  18. script:
  19. - curl https://phar.phpunit.de/phpunit-4.8.phar -L -o phpunit.phar && chmod +x phpunit.phar
  20. - php phpunit.phar