Skip to content

Commit

Permalink
Support PHP 8 (#23)
Browse files Browse the repository at this point in the history
* Update composer.json
  • Loading branch information
tabuna committed Dec 8, 2020
1 parent 47be734 commit d4a4467
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [8.0,7.3,7.4]
php: [8.0, 7.4, 7.3]
laravel: [8.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
Expand All @@ -32,7 +32,7 @@ jobs:
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

- name: Setup PHP
uses: shivammathur/setup-php@v1
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Expand Up @@ -27,7 +27,8 @@
"phpunit/phpunit": "^9.4"
},
"conflict": {
"mockery/mockery": "<1.4.2"
"mockery/mockery": "<1.4.2",
"symfony/http-foundation": "<5.1.9"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit d4a4467

Please sign in to comment.