Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support PHP 8.2 #470

Merged
merged 9 commits into from
Dec 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.