Skip to content

Commit

Permalink
Laravel 8
Browse files Browse the repository at this point in the history
  • Loading branch information
bcismariu committed Sep 29, 2020
1 parent 9c02f18 commit 71e32e8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3]
laravel: [^7.0]
php: [7.3, 7.4]
laravel: [^8.0]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: ^7.0
testbench: ^5.0
- laravel: ^8.0
testbench: ^6.0

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - ${{ matrix.dependency-version }}

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
}
],
"require": {
"php": "^7.2.5",
"php": "^7.3",
"opis/closure": "^3.1",
"illuminate/support": "^7.0",
"illuminate/contracts": "^7.0",
"guzzlehttp/guzzle": "^6.3",
"imemento/sdk-auth": "~7.0.0"
"illuminate/support": "^8.0",
"illuminate/contracts": "^8.0",
"guzzlehttp/guzzle": "^7.0",
"imemento/sdk-auth": "~8.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"orchestra/testbench": "^5.0"
"phpunit/phpunit": "^9.0",
"orchestra/testbench": "^6.0"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 4 additions & 0 deletions tests/Unit/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@
use GuzzleHttp\Exception\BadResponseException;
use Illuminate\Support\Facades\Log;

/**
* @runTestsInSeparateProcesses
* @preserveGlobalState disabled
*/
class ClientTest extends TestCase
{
protected $handler;
Expand Down

0 comments on commit 71e32e8

Please sign in to comment.