Skip to content

Commit 671ce91

Browse files
Merge pull request #5 from freekmurze/master
Allow PHP 8 + remove unused testbench package
2 parents 6341be4 + da8fe59 commit 671ce91

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

.github/workflows/run-tests.yml

+3-11
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,17 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
php: [7.4, 7.3, 7.2]
12+
php: [8.0, 7.4, 7.3, 7.2]
1313
dependency-version: [prefer-lowest, prefer-stable]
14-
include:
15-
- testbench: 5.*
1614

1715
name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
1816

1917
steps:
2018
- name: Checkout code
21-
uses: actions/checkout@v1
22-
23-
- name: Cache dependencies
24-
uses: actions/cache@v1
25-
with:
26-
path: ~/.composer/cache/files
27-
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
19+
uses: actions/checkout@v2
2820

2921
- name: Setup PHP
30-
uses: shivammathur/setup-php@v1
22+
uses: shivammathur/setup-php@v2
3123
with:
3224
php-version: ${{ matrix.php }}
3325
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,10 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.2"
19+
"php": "^7.2|^8.0"
2020
},
2121
"require-dev": {
2222
"friendsofphp/php-cs-fixer": "^2.16",
23-
"orchestra/testbench": "5.*",
2423
"phpunit/phpunit": "^9.0"
2524
},
2625
"autoload": {

0 commit comments

Comments
 (0)