Skip to content

Commit

Permalink
Security update (#13)
Browse files Browse the repository at this point in the history
* Fix for CVE-2021-21263
* add support for php 8
  • Loading branch information
bomshteyn committed Jan 21, 2021
1 parent 88ada45 commit f8b2e87
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
15 changes: 13 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,22 @@ language: php
php:
- 7.3
- 7.4
- 8.0

env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
- LARAVEL=^6.0 TESTBENCH=4.7.* PHPUNIT=8.4.*
- LARAVEL=^7.0 TESTBENCH=5.1.* PHPUNIT=8.4.*

# All versions below only support PHP ^7.3 (Laravel requirement)
- LARAVEL=^8.0 TESTBENCH=^6.0 PHPUNIT=9.3.*

matrix:
exclude:
- php: 8.0
env: LARAVEL=^6.0 TESTBENCH=4.7.* PHPUNIT=8.4.*
- php: 8.0
env: LARAVEL=^7.0 TESTBENCH=5.1.* PHPUNIT=8.4.*

before_script:
- travis_retry composer self-update
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
}
],
"require": {
"php": "^7.3",
"php": "^7.3|^8.0",
"ext-json": "*",
"illuminate/config": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.20.12|^7.30.3|^8.22.1",
"illuminate/support": "^6.0|^7.0|^8.0"
},
"require-dev": {
Expand Down

0 comments on commit f8b2e87

Please sign in to comment.