Skip to content

Commit

Permalink
Merge pull request #10 from placetopay-org/feature/upgrate-php-8.2
Browse files Browse the repository at this point in the history
Feature/upgrate php 8.2
  • Loading branch information
andrextor authored Nov 22, 2023
2 parents c6ec21b + 8e376b8 commit bf09d12
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/guzzle-logger-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,13 @@ jobs:
restore-keys: |
${{ runner.os }}-php-
- name: Setup PHP
uses: shivammathur/setup-php@2.25.1
with:
php-version: 8.2

- name: 🛠️Install dependencies
run: composer install --prefer-dist --no-progress
run: composer install --no-interaction --prefer-dist --no-progress

- name: ✔Check-Composer-audit
run: composer audit
Expand All @@ -43,7 +48,7 @@ jobs:
- name: Setup PHP with Xdebug
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: '8.2'
coverage: xdebug

- name: 🧪Run test suite
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0] - 2023-11-23

### Changed
- Upgrades runtime to php 8.2.

## [0.1.1] - 2023-07-10

### Changed
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
],
"require": {
"php": "^8.1",
"php": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.7",
"psr/log": "^3.0"
Expand Down
2 changes: 1 addition & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

// define sets of rules
$rectorConfig->sets([
LevelSetList::UP_TO_PHP_81,
LevelSetList::UP_TO_PHP_82,
]);

$rectorConfig->skip([
Expand Down

0 comments on commit bf09d12

Please sign in to comment.