Skip to content

Commit a1b70ab

Browse files
authored
Merge pull request #110 from bensherred/laravel-8-support
Update dependencies and add support for Laravel 8
2 parents 4a002fb + a9df749 commit a1b70ab

File tree

8 files changed

+2830
-960
lines changed

8 files changed

+2830
-960
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: php
22

33
php:
44
- 7.3
5-
- 7.2
65

76
notifications:
87
slack: nukacode:HyFrc2QLi5PC5fPxadm07O5v
@@ -22,4 +21,4 @@ before_script:
2221
script:
2322
- phpunit --coverage-clover=coverage.clover
2423
- wget https://scrutinizer-ci.com/ocular.phar
25-
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
24+
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -415,3 +415,4 @@ A Steam API key must be provided or most tests will fail.
415415
- [JRizzle88](https://github.com/JRizzle88)
416416
- [jastend](https://github.com/jastend)
417417
- [Teakowa](https://github.com/Teakowa)
418+
- [Ben Sherred](https://github.com/bensherred)

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,19 @@
1010
}
1111
],
1212
"require": {
13-
"php": "^7.2.0",
14-
"laravel/framework": ">=5.8.0",
15-
"guzzlehttp/guzzle": "^6.0",
13+
"php": "^7.3",
14+
"laravel/framework": "^6.0|^7.0|^8.0",
15+
"guzzlehttp/guzzle": "^7.0.1",
1616
"ext-bcmath": "*",
1717
"ext-simplexml": "*",
1818
"ext-libxml": "*",
1919
"ext-curl": "*",
2020
"ext-json": "*"
2121
},
2222
"require-dev": {
23-
"phpunit/phpunit": "^8.0",
24-
"orchestra/testbench": "^3.0",
25-
"vlucas/phpdotenv": "^3.6"
23+
"phpunit/phpunit": "^9.3",
24+
"orchestra/testbench": "^6.0",
25+
"vlucas/phpdotenv": "^5.2"
2626
},
2727
"autoload": {
2828
"psr-4": {

0 commit comments

Comments
 (0)