Skip to content

Commit 01b30a6

Browse files
author
Muhammad Umer Farooq
authored
Merge pull request #3 from peter279k/fix_travis_ci
Fix Travis CI setting
2 parents ac1449b + 7bc0624 commit 01b30a6

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

.travis.yml

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
1-
# Required to run your project under the correct environment.
21
language: php
3-
4-
# Versions of PHP you want your project run with.
2+
dist: trusty
3+
sudo: true
54
php:
6-
- 7.1
7-
- 7.2
8-
- 7.3
9-
10-
# Commands to be run before your environment runs.
11-
before_script:
12-
- composer self-update
13-
14-
# Customize when the notification emails are sent.
15-
notifications:
16-
 email: lablnet01@gmail.com
5+
- '7.1'
6+
- '7.2'
7+
- '7.3'
8+
- nightly
9+
matrix:
10+
allow_failures:
11+
- php: nightly
12+
before_install:
13+
- sudo add-apt-repository ppa:ondrej/php -y
14+
- sudo apt-get -qq update
15+
- sudo apt-get install -y libsodium-dev
16+
install:
17+
- printf "\n" | pecl install libsodium
18+
- composer install
19+
script:
20+
- ./vendor/bin/phpunit

0 commit comments

Comments
 (0)