Skip to content

Commit fa54d09

Browse files
authored
Add PHP 8.0 Support (#11)
1 parent 65887d1 commit fa54d09

File tree

6 files changed

+943
-369
lines changed

6 files changed

+943
-369
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
timeout-minutes: 10
1414
strategy:
1515
matrix:
16-
php-versions: [ '7.0', '7.1', '7.2', '7.3', '7.4' ]
16+
php-versions: [ '7.3', '7.4', '8.0' ]
1717
name: PHP ${{ matrix.php-versions }}
1818

1919
steps:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"type": "library",
55
"license": "MIT",
66
"require": {
7-
"php": ">=7.0",
7+
"php": ">=7.3",
88
"elvanto/picodb": "^2.0"
99
},
1010
"autoload": {
1111
"psr-4": {"PicoMapper\\": "src/"}
1212
},
1313
"require-dev": {
14-
"phpunit/phpunit": "6.5.14"
14+
"phpunit/phpunit": "9.3.*"
1515
},
1616
"scripts": {
1717
"test": "phpunit"

0 commit comments

Comments
 (0)