We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b1fab0 commit 87748d6Copy full SHA for 87748d6
.gitignore
@@ -0,0 +1,6 @@
1
+*~
2
+composer.lock
3
+composer.phar
4
+phpunit.xml
5
+vendor/
6
+.idea/
.travis.yml
@@ -0,0 +1,21 @@
+sudo: false
+
+git:
+ depth: 1
+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