Skip to content

Commit

Permalink
Merge pull request #8 from pauci/feature/php-8.2
Browse files Browse the repository at this point in the history
feat: Allow and test on php 8.2
  • Loading branch information
pauci authored Jan 18, 2023
2 parents abe5ded + faf1308 commit 019f833
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
php-version: 8.2
coverage: none

- name: Get composer cache directory
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:

strategy:
matrix:
php-versions: ['8.0', '8.1']
php-versions: ['8.0', '8.1', '8.2']

steps:
- name: Checkout code
Expand Down
17 changes: 6 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,23 @@
}
},
"require": {
"php": "~8.0.0||~8.1.0",
"pauci/cqrs": "^0.6.0",
"psr/container": "^1.0||^2.0"
"php": "^8.0 || ^8.1 || ^8.2",
"pauci/cqrs": "^0.7.0",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"doctrine/orm": "^2.8",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^1.2",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"squizlabs/php_codesniffer": "^3.7",
"symfony/serializer": "^6.0"
},
"autoload": {
"psr-4": {
"CQRSFactory\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.5.x-dev"
}
},
"scripts": {
"check": [
"@lint",
Expand Down

0 comments on commit 019f833

Please sign in to comment.