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

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