Skip to content

Commit

Permalink
Bump minimum version to PHP 7.3 (#6)
Browse files Browse the repository at this point in the history
* Bump minimum PHP version to 7.3
  • Loading branch information
LarsGrevelink authored Sep 26, 2022
1 parent 0ec7783 commit b83daa9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
max-parallel: 15
matrix:
php-versions: ['7.1', '7.2', '7.3', '7.4']
php-versions: ['7.3', '7.4', '8.0', '8.1']
name: PHP ${{ matrix.php-versions }} Test
steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
}
],
"require": {
"php": ">=7.1"
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
"phpunit/phpunit": "^7.0 | ^8.0"
},
"autoload": {
"psr-4": {
Expand All @@ -27,4 +27,4 @@
"test": "vendor/bin/phpunit --colors=always"
},
"minimum-stability": "stable"
}
}

0 comments on commit b83daa9

Please sign in to comment.