Skip to content

Commit 87748d6

Browse files
committedJul 20, 2017
add travis file and ingore
1 parent 8b1fab0 commit 87748d6

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
 

Diff for: ‎.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*~
2+
composer.lock
3+
composer.phar
4+
phpunit.xml
5+
vendor/
6+
.idea/

Diff for: ‎.travis.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
sudo: false
2+
3+
git:
4+
depth: 1
5+
6+
language: php
7+
8+
php:
9+
- '5.6'
10+
- '7.0'
11+
12+
cache:
13+
directories:
14+
- $HOME/.composer/cache
15+
16+
install:
17+
- composer self-update
18+
- composer install --prefer-source --ignore-platform-reqs # ext-amqp is not installed
19+
20+
script:
21+
- vendor/bin/phpunit --exclude-group=functional

0 commit comments

Comments
 (0)
Please sign in to comment.