Skip to content

Commit f06edbd

Browse files
committed
requires PHP 8.2
1 parent 8e1071c commit f06edbd

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v4
1111
- uses: shivammathur/setup-php@v2
1212
with:
13-
php-version: 8.1
13+
php-version: 8.2
1414
coverage: none
1515

1616
- run: composer install --no-progress --prefer-dist

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
php: ['8.1', '8.2', '8.3', '8.4', '8.5']
10+
php: ['8.2', '8.3', '8.4', '8.5']
1111

1212
fail-fast: false
1313

@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/checkout@v4
3636
- uses: shivammathur/setup-php@v2
3737
with:
38-
php-version: 8.1
38+
php-version: 8.2
3939
coverage: none
4040

4141
- run: composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable
@@ -50,7 +50,7 @@ jobs:
5050
- uses: actions/checkout@v4
5151
- uses: shivammathur/setup-php@v2
5252
with:
53-
php-version: 8.1
53+
php-version: 8.2
5454
coverage: none
5555

5656
- run: composer install --no-progress --prefer-dist

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
77
Nette Security is a standalone PHP library providing authentication, authorization, and role-based access control (ACL) for the Nette Framework ecosystem.
88

99
- **Type**: Reusable PHP library/package
10-
- **PHP Support**: 8.1 - 8.5
10+
- **PHP Support**: 8.2 - 8.5
1111
- **Key Components**: Authentication (User login/logout), Authorization (Permission checking), ACL (Access Control Lists)
1212
- **Documentation**: https://doc.nette.org/access-control
1313

@@ -556,7 +556,7 @@ public function checkRequirements($element): void
556556
## CI/CD Pipeline
557557

558558
GitHub Actions run on all pull requests:
559-
- Tests across PHP 8.1, 8.2, 8.3, 8.4, 8.5
559+
- Tests across PHP 8.2, 8.3, 8.4, 8.5
560560
- Code style checks (Nette Code Checker)
561561
- Static analysis (PHPStan Level 5)
562562
- Code coverage tracking

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"require": {
18-
"php": "8.1 - 8.5",
18+
"php": "8.2 - 8.5",
1919
"nette/utils": "^4.0"
2020
},
2121
"require-dev": {

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Authentication & Authorization library for Nette.
2020

2121
Documentation can be found on the [website](https://doc.nette.org/access-control).
2222

23-
It requires PHP version 8.1 and supports PHP up to 8.5.
23+
It requires PHP version 8.2 and supports PHP up to 8.5.
2424

2525

2626
[Support Me](https://github.com/sponsors/dg)

0 commit comments

Comments
 (0)