Skip to content

Commit 937eac1

Browse files
authored
Update picodb to version 6, phpunit to version 9.6, and restrict php to >=8.0 (#22)
1 parent 40c342b commit 937eac1

3 files changed

Lines changed: 207 additions & 547 deletions

File tree

.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.3', '7.4', '8.0' ]
16+
php-versions: [ '8.0', '8.1', '8.2', '8.3' ]
1717
name: PHP ${{ matrix.php-versions }}
1818

1919
steps:

composer.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,19 @@
44
"type": "library",
55
"license": "MIT",
66
"require": {
7-
"php": ">=7.3",
8-
"elvanto/picodb": "^4.2.0"
7+
"php": ">=8.0",
8+
"elvanto/picodb": "^6.0.1"
9+
},
10+
"config": {
11+
"platform": {
12+
"php": "8.0"
13+
}
914
},
1015
"autoload": {
1116
"psr-4": {"PicoMapper\\": "src/"}
1217
},
1318
"require-dev": {
14-
"phpunit/phpunit": "9.3.*"
19+
"phpunit/phpunit": "^9.6"
1520
},
1621
"scripts": {
1722
"test": "phpunit"

0 commit comments

Comments
 (0)