Skip to content

Commit 54bc33d

Browse files
authored
Merge pull request #9 from miladrahimi/dev
Version 3
2 parents ef9032c + 47bf9a3 commit 54bc33d

31 files changed

+2186
-1650
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
/.idea
1+
/.idea
2+
/vendor
3+
/composer.lock

.travis.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
sudo: required
2+
3+
language: php
4+
5+
php:
6+
- 7.0
7+
- 7.1
8+
- 7.2
9+
10+
branches:
11+
only:
12+
- master
13+
14+
before_install:
15+
- travis_retry composer self-update
16+
17+
before_script:
18+
- phpenv config-rm xdebug.ini
19+
- composer install --no-interaction --no-suggest
20+
21+
script:
22+
- vendor/bin/phpunit --no-coverage tests
23+
24+
notifications:
25+
email:
26+
recipients:
27+
28+
on_success: change
29+
on_failure: always

0 commit comments

Comments
 (0)