Skip to content

Commit 8d2ab65

Browse files
committed
minimum php 7.4
1 parent 10468c1 commit 8d2ab65

File tree

4 files changed

+2750
-3
lines changed

4 files changed

+2750
-3
lines changed

.github/workflows/linting.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
php: ['7.3', '7.4', '8.0', '8.1']
12+
php: ['7.4', '8.0', '8.1']
1313

1414
name: Linting - PHP ${{ matrix.php }}
1515
steps:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A PHP application to access your Kimai 2 installation via its API (http).
44

55
**Requirements**
66

7-
- PHP 7.3
7+
- PHP 7.4, 8.0 or 8.1
88
- cURL extension
99
- json extension
1010
- iconv extension

composer.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": "7.3.*||7.4.*||8.0.*||8.1.*",
13+
"php": "7.4.*||8.0.*||8.1.*",
1414
"ext-iconv": "*",
1515
"ext-json": "*",
1616
"guzzlehttp/guzzle": "^6.5",
@@ -22,6 +22,9 @@
2222
"phpstan/phpstan": "^1.0"
2323
},
2424
"config": {
25+
"platform": {
26+
"php": "7.4"
27+
},
2528
"preferred-install": {
2629
"*": "dist"
2730
},

0 commit comments

Comments
 (0)