Skip to content

Commit

Permalink
support PHP 8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmajor committed Oct 17, 2022
1 parent 1fabd2d commit 9e74037
Show file tree
Hide file tree
Showing 5 changed files with 195 additions and 109 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sca.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.0', '8.1']
php: ['8.1']

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
php-version: 8.1
coverage: none

- name: Get Composer cache directory path
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.0', '8.1']
php: ['8.1', '8.2']

steps:
- name: Checkout code
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@
],
"homepage": "https://github.com/jrmajor/pluralrules",
"require": {
"php": "~8.0.0 || ~8.1.0",
"php": "8.1 - 8.2",
"ext-intl": "*"
},
"require-dev": {
"azjezz/psl": "^1.9",
"azjezz/psl": "^2.0",
"hoa/compiler": "~3.17",
"jrmajor/cs": "^0.4.6",
"nette/php-generator": "^4.0",
"nunomaduro/collision": "^6.3",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5",
"symfony/console": "^6.0",
"symfony/var-dumper": "^6.0",
"symfony/console": "^6.1",
"symfony/var-dumper": "^6.1",
"vaimo/composer-patches": "^5.1"
},
"minimum-stability": "dev",
Expand Down

0 comments on commit 9e74037

Please sign in to comment.