Skip to content

Commit

Permalink
More efficient dependancy-lookups.
Browse files Browse the repository at this point in the history
olssonm committed Mar 16, 2018
1 parent 119881e commit dd2138f
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ before_script:
- travis_retry composer require "illuminate/support:${ILLUMINATE_VERSION}"

script:
- composer test
- phpunit

matrix:
include:
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -17,12 +17,12 @@
}
],
"require": {
"illuminate/support": ">=5.4",
"php" : "7.*"
"illuminate/support": "~5.4.0|~5.5.0|~5.6.0",
"php" : "^7.0"
},
"require-dev": {
"phpunit/phpunit" : ">=5.0",
"orchestra/testbench": "3.*"
"phpunit/phpunit": "^6.5 || ^7.0",
"orchestra/testbench": "~3.4.0|~3.5.0|~3.6.0"
},
"autoload": {
"psr-4": {
@@ -35,7 +35,7 @@
}
},
"scripts": {
"test": "phpunit"
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {

0 comments on commit dd2138f

Please sign in to comment.