Skip to content

Commit 09768b5

Browse files
committed
Drop PHP 7.2 and 7.3
1 parent fc49a23 commit 09768b5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
php-version: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
27+
php-version: ["7.4", "8.0", "8.1", "8.2", "8.3"]
2828
os: [ubuntu-latest]
2929
experimental: [false]
3030
include:
@@ -47,7 +47,7 @@ jobs:
4747
- name: Copy config
4848
run: cp tests/config.dist.php tests/config.php
4949
- name: Run php tests
50-
run: composer run phpunit
50+
run: composer run phpunit -- --coverage-clover build/logs/clover.xml
5151
env:
5252
TEST_MYSQL_HOST: "127.0.0.1"
5353
TEST_MYSQL_DB: testdb

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
}
4444
},
4545
"require": {
46-
"php": "^7.2 || ^8.0"
46+
"php": "^7.4 || ^8.0"
4747
},
4848
"require-dev": {
49-
"phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
49+
"phpunit/phpunit": "^9 || ^10 || ^11",
5050
"phpstan/phpstan": "^1.4",
5151
"wdes/coding-standard": "^3.2"
5252
},

0 commit comments

Comments
 (0)