Skip to content

Commit 01b3761

Browse files
committed
requires PHP 8.0
1 parent 3fe3066 commit 01b3761

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- uses: shivammathur/setup-php@v2
1515
with:
16-
php-version: 7.4
16+
php-version: 8.0
1717
coverage: none
1818

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

.github/workflows/tests.yml

Lines changed: 2 additions & 2 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: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
10+
php: ['8.0', '8.1', '8.2']
1111

1212
fail-fast: false
1313

@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/checkout@v3
3838
- uses: shivammathur/setup-php@v2
3939
with:
40-
php-version: 7.2
40+
php-version: 8.0
4141
coverage: none
4242

4343
- run: composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable

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": ">=7.2 <8.3",
18+
"php": ">=8.0 <8.3",
1919
"nette/finder": "^2.4 || ^3.0",
2020
"nette/utils": "^2.4 || ^3.0"
2121
},

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Installation
3333
composer require nette/caching
3434
```
3535

36-
It requires PHP version 7.2 and supports PHP up to 8.2.
36+
It requires PHP version 8.0 and supports PHP up to 8.2.
3737

3838

3939
Basic Usage

0 commit comments

Comments
 (0)