.travis.yml 724 B

123456789101112131415161718192021222324252627282930
  1. language: php
  2. sudo: false
  3. php:
  4. - 5.5
  5. - 5.6
  6. - 7.0
  7. env:
  8. - NEO_VERSION="2.1.6"
  9. - NEO_VERSION="2.1.8"
  10. - NEO_VERSION="2.2.2"
  11. - NEO_VERSION="2.2.3"
  12. before_install:
  13. - wget dist.neo4j.org/neo4j-community-$NEO_VERSION-unix.tar.gz > null
  14. - tar -xzf neo4j-community-$NEO_VERSION-unix.tar.gz > null
  15. - neo4j-community-$NEO_VERSION/bin/neo4j start > null
  16. - composer self-update
  17. - COMPOSER_ROOT_VERSION=dev-master composer install
  18. before_script:
  19. #- composer install --prefer-source --no-interaction
  20. - mv tests/database_settings.yml.dist tests/database_settings.yml
  21. script:
  22. - ./tests/setNeoToken.sh
  23. - vendor/bin/phpunit
  24. notifications:
  25. email: "willemsen.christophe@gmail.com"