Skip to content

Commit a81c62a

Browse files
committed
Test up to PHP 8.1
1 parent a8c693d commit a81c62a

File tree

4 files changed

+11
-35
lines changed

4 files changed

+11
-35
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
continue-on-error: ${{ matrix.experimental }}
1010
strategy:
1111
matrix:
12-
php: ['5.5', '5.6', '7.0', '7.1', '7.2', '7.3']
12+
php: ['5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
1313
experimental: [false]
1414
include:
15-
- php: 7.2
15+
- php: 8.1
1616
analysis: true
1717

1818
steps:

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
build
2-
vendor
1+
.DS_Store
32
.idea
3+
.phpunit.result.cache
4+
.vscode
5+
clover.xml
46
composer.lock
57
phpunit.xml
8+
vendor
9+
coverage

.travis.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
}
1212
],
1313
"require": {
14-
"php": ">=5.5",
14+
"php": "^5.5 || ^7.0 || ^8.0",
1515
"ext-json": "*"
1616
},
1717
"require-dev": {
18-
"phpunit/phpunit": "^4.0|^5.0|^6.0",
19-
"squizlabs/php_codesniffer": "^3.0"
18+
"phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
19+
"squizlabs/php_codesniffer": "^3.6"
2020
},
2121
"autoload": {
2222
"files": [

0 commit comments

Comments
 (0)