mirror of
https://github.com/Intervention/image.git
synced 2025-01-30 18:27:36 +01:00
29 lines
413 B
YAML
29 lines
413 B
YAML
language: php
|
|
|
|
sudo: false
|
|
|
|
dist: trusty
|
|
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- 7.0
|
|
- 7.1
|
|
- 7.2
|
|
- 7.3
|
|
- nightly
|
|
- hhvm
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- php: nightly
|
|
- php: hhvm
|
|
|
|
before_script:
|
|
- printf "\n" | pecl install imagick
|
|
- composer self-update || true
|
|
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader
|
|
|
|
script: vendor/bin/phpunit
|