Skip to content

Commit

Permalink
Merge pull request #644 from phel-lang/feat/upgrade-min-php-version
Browse files Browse the repository at this point in the history
Require min php version 8.2
  • Loading branch information
Chemaclass committed Dec 23, 2023
2 parents 4f5b4c9 + 1da7451 commit 208787d
Show file tree
Hide file tree
Showing 5 changed files with 214 additions and 210 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.0' ]
php: [ '8.2' ]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.0' ]
php: [ '8.2' ]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.0', '8.1', '8.2' ]
php: [ '8.2', '8.3' ]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.0', '8.1', '8.2' ]
php: [ '8.2', '8.3' ]
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ '8.0' ]
php: [ '8.2' ]
steps:
- uses: actions/checkout@v4

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file.

## Unreleased

* Require PHP>=8.2

## [0.12.0](https://github.com/phel-lang/phel-lang/compare/v0.11.0...v0.12.0) - 2023-11-01

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Expand Up @@ -22,22 +22,22 @@
}
],
"require": {
"php": ">=8.0.2",
"gacela-project/gacela": "^1.6",
"php": ">=8.2",
"gacela-project/gacela": "^1.7",
"phpunit/php-timer": "^5.0",
"symfony/console": "^6.0"
"symfony/console": "^6.4"
},
"require-dev": {
"ext-readline": "*",
"friendsofphp/php-cs-fixer": "^3.40",
"friendsofphp/php-cs-fixer": "^3.41",
"infection/infection": "^0.26",
"phpbench/phpbench": "^1.2",
"phpmetrics/phpmetrics": "^2.8",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.6",
"psalm/plugin-phpunit": "^0.18",
"symfony/var-dumper": "^6.0",
"vimeo/psalm": "^5.16"
"symfony/var-dumper": "^6.4",
"vimeo/psalm": "^5.18"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -88,7 +88,7 @@
],
"config": {
"platform": {
"php": "8.0.2"
"php": "8.2"
},
"allow-plugins": {
"composer/package-versions-deprecated": true,
Expand Down

0 comments on commit 208787d

Please sign in to comment.