Skip to content

Commit

Permalink
Merge pull request #7 from oqq/php_upgrade
Browse files Browse the repository at this point in the history
Upgrade support for php version
  • Loading branch information
oqq committed Mar 23, 2022
2 parents 9f63eab + 3d24ffb commit d480c44
Show file tree
Hide file tree
Showing 5 changed files with 772 additions and 508 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
dependencies:
- "locked"

Expand Down Expand Up @@ -60,8 +60,8 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
dependencies:
- "locked"
- "highest"
Expand Down Expand Up @@ -110,8 +110,8 @@ jobs:
strategy:
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
dependencies:
- "locked"

Expand Down
17 changes: 8 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,21 @@
}
],
"require": {
"php": "7.4.* | 8.0.*",
"ext-json": "*",
"php": "8.0.* | 8.1.*",
"webmozart/assert": "^1.9"
},
"require-dev": {
"infection/infection": "^0.20.2",
"phpunit/phpunit": "^9.4",
"psalm/plugin-phpunit": "^0.15.0",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.15.2",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^4.2"
"vimeo/psalm": "~4.22.0"
},
"config": {
"sort-packages": true
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": false
}
},
"autoload": {
"psr-4": {
Expand All @@ -37,8 +39,5 @@
"psr-4": {
"Oqq\\PactTest\\": "tests/"
}
},
"scripts": {

}
}

0 comments on commit d480c44

Please sign in to comment.