build: dependencies: before: - sudo apt-get update -y - apt-cache policy libssl1.0.0 - sudo apt-get install libssl1.0.0 libssl-dev openssl openssl -y - curl -O https://download.arangodb.com/arangodb32/xUbuntu_14.04/Release.key - sudo apt-key add - < Release.key - echo 'deb https://download.arangodb.com/arangodb32/xUbuntu_14.04/ /' | sudo tee /etc/apt/sources.list.d/arangodb.list - sudo apt-get install apt-transport-https - sudo apt-get update - sudo echo arangodb3 arangodb3/password password root | debconf-set-selections - sudo echo arangodb3 arangodb3/password_again password root | debconf-set-selections - sudo apt-get install arangodb3=3.2.6 environment: php: version: 7.1 dependencies: before: - composer install --prefer-source tests: override: - command: 'bash run-tests.sh' coverage: file: 'coverage.xml' format: clover imports: - php checks: php: code_rating: true duplication: true filter: excluded_paths: - vendor/* - tests/* tools: php_sim: false php_cpd: false php_pdepend: true php_analyzer: true php_changetracking: true filter: excluded_paths: - tests/* - vendor/*
# language: php # tests: true