Skip to content

Commit 729dcc2

Browse files
authored
Merge pull request #59 from dotkernel/issue-58
Issue #58: Add PHP 8.5 support
2 parents 715a49a + 906925d commit 729dcc2

6 files changed

Lines changed: 10 additions & 8 deletions

File tree

.github/workflows/codecov.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ jobs:
1818
- "8.2"
1919
- "8.3"
2020
- "8.4"
21+
- "8.5"
2122

2223
steps:
2324
- name: Checkout
24-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2526

2627
- name: Install PHP
2728
uses: shivammathur/setup-php@v2
@@ -35,7 +36,7 @@ jobs:
3536
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
3637

3738
- name: Cache dependencies installed with composer
38-
uses: actions/cache@v3
39+
uses: actions/cache@v5
3940
with:
4041
path: ${{ env.COMPOSER_CACHE_DIR }}
4142
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

.github/workflows/static-analysis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ jobs:
1818
- "8.2"
1919
- "8.3"
2020
- "8.4"
21+
- "8.5"
2122

2223
steps:
2324
- name: Checkout
24-
uses: actions/checkout@v5
25+
uses: actions/checkout@v6
2526

2627
- name: Install PHP
2728
uses: shivammathur/setup-php@v2
@@ -35,7 +36,7 @@ jobs:
3536
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
3637

3738
- name: Cache dependencies installed with composer
38-
uses: actions/cache@v4
39+
uses: actions/cache@v5
3940
with:
4041
path: ${{ env.COMPOSER_CACHE_DIR }}
4142
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Documentation is available at: https://docs.dotkernel.org/dot-twigrenderer/.
1111
## Badges
1212

1313
![OSS Lifecycle](https://img.shields.io/osslifecycle/dotkernel/dot-twigrenderer)
14-
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.7.0)
14+
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.8.0)
1515

1616
[![GitHub issues](https://img.shields.io/github/issues/dotkernel/dot-twigrenderer)](https://github.com/dotkernel/dot-twigrenderer/issues)
1717
[![GitHub forks](https://img.shields.io/github/forks/dotkernel/dot-twigrenderer)](https://github.com/dotkernel/dot-twigrenderer/network)

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
| Version | Supported | PHP Version |
66
|---------|--------------------|------------------------------------------------------------------------------------------------------------------|
7-
| 3.x | :white_check_mark: | ![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.7.0) |
7+
| 3.x | :white_check_mark: | ![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.8.0) |
88
| <= 2.x | :x: | |
99

1010
## Reporting Potential Security Issues

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
19+
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
2020
"dotkernel/dot-authorization": "^3.4.1",
2121
"dotkernel/dot-flashmessenger": "^3.4.2",
2222
"dotkernel/dot-navigation": "^3.5.1",

docs/book/v3/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Dotkernel component providing Twig extensions and customizations.
77
## Badges
88

99
![OSS Lifecycle](https://img.shields.io/osslifecycle/dotkernel/dot-twigrenderer)
10-
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.7.0)
10+
![PHP from Packagist (specify version)](https://img.shields.io/packagist/php-v/dotkernel/dot-twigrenderer/3.8.0)
1111

1212
[![GitHub issues](https://img.shields.io/github/issues/dotkernel/dot-twigrenderer)](https://github.com/dotkernel/dot-twigrenderer/issues)
1313
[![GitHub forks](https://img.shields.io/github/forks/dotkernel/dot-twigrenderer)](https://github.com/dotkernel/dot-twigrenderer/network)

0 commit comments

Comments
 (0)