We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d965b74 commit 812a6a6Copy full SHA for 812a6a6
.travis.yml
@@ -1,13 +1,13 @@
1
language: php
2
3
php:
4
- - 5.5
5
- 5.6
6
- - 7.0
+ - 7.1
+ - 7.2
7
+ - 7.3
8
9
before_script:
- - composer self-update
10
- - composer install --prefer-source --no-interaction
+ - curl -s http://getcomposer.org/installer | php
11
+ - php composer.phar install --dev
12
-script:
13
- - phpunit
+script: php ./vendor/bin/phpunit
composer.json
@@ -16,9 +16,9 @@
16
}
17
],
18
"require": {
19
- "php": ">=5.5.9",
20
- "illuminate/support": "~5.1",
21
- "illuminate/database": "~5.1"
+ "php": ">=5.6",
+ "illuminate/support": "~5.1|~6.0",
+ "illuminate/database": "~5.1|~6.0"
22
},
23
"require-dev": {
24
"phpunit/phpunit": "^4.8",
0 commit comments