-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
31 lines (25 loc) · 837 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
env:
matrix:
- COMPOSER_PACKAGES='symfony/console=^2.0 symfony/event-dispatcher=^2.0 symfony/monolog-bridge=^2.0'
- COMPOSER_PACKAGES='symfony/console=^3.0 symfony/event-dispatcher=^3.0 symfony/monolog-bridge=^3.0'
- COMPOSER_PACKAGES='symfony/console=^4.0 symfony/event-dispatcher=^4.0 symfony/monolog-bridge=^4.0'
matrix:
exclude:
- php: 5.6
env: COMPOSER_PACKAGES='symfony/console=^4.0 symfony/event-dispatcher=^4.0 symfony/monolog-bridge=^4.0'
- php: 7.0
env: COMPOSER_PACKAGES='symfony/console=^4.0 symfony/event-dispatcher=^4.0 symfony/monolog-bridge=^4.0'
install:
- composer require $COMPOSER_PACKAGES
- composer install
before_script:
- mysql -u root -e 'create database lhm_php_test;'
script:
- vendor/bin/phpunit
sudo: false