Skip to content

Commit 023bf33

Browse files
committed
requires PHP 7.2
1 parent efeb4cc commit 023bf33

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.github/workflows/coding-style.yml

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

1616
- run: composer create-project nette/code-checker temp/code-checker ^3 --no-progress

.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.1', '7.2', '7.3', '7.4', '8.0']
10+
php: ['7.2', '7.3', '7.4', '8.0']
1111

1212
fail-fast: false
1313

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

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

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: php
22
php:
3-
- 7.1
43
- 7.2
54
- 7.3
65
- 7.4

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.1",
18+
"php": ">=7.2 <8.1",
1919
"nette/utils": "^3.1"
2020
},
2121
"require-dev": {

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Documentation can be found on the [website](https://doc.nette.org/access-control
2222

2323
In the examples, we will use an object of class [Nette\Security\User](https://api.nette.org/3.0/Nette/Security/User.html), which represents the current user.
2424

25-
It requires PHP version 7.1 and supports PHP up to 8.0.
25+
It requires PHP version 7.2 and supports PHP up to 8.0.
2626

2727
Authentication
2828
==============

0 commit comments

Comments
 (0)