Skip to content

Commit

Permalink
add php 8.2 support (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafah15 committed Jul 31, 2023
1 parent 9f9f610 commit a2ad8ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
tests:
strategy:
matrix:
php-versions: ['7.3', '7.4', '8.0', '8.1']
php-versions: ['7.4', '8.0', '8.1', '8.2']

runs-on: ubuntu-latest

Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
}
],
"require": {
"php": "^7.3|^8.0",
"symfony/console" : "^2.1|^3.0|^4.0|^5.0",
"phpunit/php-timer": "^4.0|^5.0"
"php": ">=7.4",
"symfony/console" : "4.0|^5.0",
"phpunit/php-timer": "^5.0"
},
"autoload" : {
"psr-4" : {
Expand All @@ -22,6 +22,6 @@
"phpnsc"
],
"require-dev": {
"phpunit/phpunit": "^9.0"
"phpunit/phpunit": "^9.6.10"
}
}

0 comments on commit a2ad8ad

Please sign in to comment.