Skip to content

Commit

Permalink
Support PHP 8.2 (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspoerschke authored Dec 22, 2022
1 parent 08001da commit 0e2c46d
Show file tree
Hide file tree
Showing 6 changed files with 85 additions and 66 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- "7.4"
- "8.0"
- "8.1"
- "8.2"
steps:
- name: "Checkout"
uses: "actions/checkout@v3"
Expand All @@ -34,6 +35,10 @@ jobs:
path: "${{ steps.determine-composer-cache-directory.outputs.directory }}"
key: "php-${{ matrix.php-version }}-composer-cache"

- name: "Update ocramius/package-versions"
if: ${{ matrix.php-version != '7.4' }}
run: "composer up ocramius/package-versions"

- name: "Composer update"
if: ${{ matrix.php-version == '7.4' }}
run: "composer up --prefer-lowest"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- Support chaining of Calendar.setPublishedTTL() [#452](https://github.com/markuspoerschke/iCal/pull/452)
- Support PHP 8.2 [#470](https://github.com/markuspoerschke/iCal/pull/470)

## [2.7.0] - 2022-06-21

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
-include Makefile.local

export XDEBUG_MODE=coverage
export PHP_CS_FIXER_IGNORE_ENV=1

MAKEFLAGS += --warn-undefined-variables
SHELL := bash
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ If you just start using this package, you should install version 2.

| Version | PHP Version |
| ------- | ----------- |
| 2.\* | 7.4 - 8.0 |
| 2.\* | 7.4 - 8.2 |
| 0.16.\* | 7.0 - 8.0 |
| 0.11.\* | 5.3.0 - 7.4 |

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"docs": "https://ical.poerschke.nrw"
},
"require": {
"php": ">=7.4 || ~8.0.0 || ~8.1.0",
"php": ">=7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-mbstring": "*",
"symfony/deprecation-contracts": "^2.1 || ^3.0"
},
Expand Down
140 changes: 76 additions & 64 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0e2c46d

Please sign in to comment.