Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ Thumbs.db

# sublime phpintel plugin
/.phpintel

### CACHE ###
.phpunit.result.cache
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ language: php
dist: trusty

php:
- 5.5
- 5.6
- 7.0
- hhvm

- 7.2
- 5.6
- 7.3

matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: 7.3

before_script:
- travis_retry composer self-update
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
}
],
"require": {
"php": ">=5.5.0",
"illuminate/console": "~5.0",
"illuminate/support": "~5.0",
"illuminate/cache": "~5.0"
"php": ">=7.2.0",
"illuminate/console": "~6.0",
"illuminate/support": "~6.0",
"illuminate/cache": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"phpunit/phpunit": "~8.0",
"mockery/mockery": "dev-master",
"illuminate/database": "~5.0",
"illuminate/database": "~6.0",
"sami/sami": "dev-master"
},
"autoload": {
Expand Down
Loading