Skip to content

Commit 9b8d695

Browse files
authored
Fix: Drop support for PHP 7.1, 7.2, and 7.3 (#543)
1 parent c9dec13 commit 9b8d695

File tree

11 files changed

+25
-23
lines changed

11 files changed

+25
-23
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
php-version:
19-
- "7.1"
19+
- "7.4"
2020

2121
steps:
2222
- name: "Checkout code"

.github/workflows/tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ jobs:
1818
operating-system:
1919
- "ubuntu-latest"
2020
php-version:
21-
- "7.1"
22-
- "7.2"
23-
- "7.3"
2421
- "7.4"
2522
- "8.0"
2623
- "8.1"

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased](https://github.com/FakerPHP/Faker/compare/v1.20.0...main)
44

5+
- Dropped support for PHP 7.1, 7.2, and 7.3 (#543)
6+
57
## [2022-07-20, v1.20.0](https://github.com/FakerPHP/Faker/compare/v1.19.0..v1.20.0)
68

79
- Fixed typo in French phone number (#452)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ It's heavily inspired by Perl's [Data::Faker](https://metacpan.org/pod/Data::Fak
1515

1616
### Installation
1717

18-
Faker requires PHP >= 7.1.
18+
Faker requires PHP >= 7.4.
1919

2020
```shell
2121
composer require fakerphp/faker

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"require": {
17-
"php": "^7.1 || ^8.0",
17+
"php": "^7.4 || ^8.0",
1818
"psr/container": "^1.0 || ^2.0",
1919
"symfony/deprecation-contracts": "^2.2 || ^3.0"
2020
},
@@ -50,7 +50,10 @@
5050
"bamarni/composer-bin-plugin": true,
5151
"composer/package-versions-deprecated": true
5252
},
53-
"sort-packages": true
53+
"sort-packages": true,
54+
"platform": {
55+
"php": "7.4.32"
56+
}
5457
},
5558
"extra": {
5659
"branch-alias": {

vendor-bin/php-cs-fixer/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"require": {
3-
"php": "^7.1 || ^8.0",
3+
"php": "^7.4 || ^8.0",
44
"friendsofphp/php-cs-fixer": "^3.3.0"
55
},
66
"config": {
77
"platform": {
8-
"php": "7.1.33"
8+
"php": "7.4.32"
99
},
1010
"preferred-install": "dist",
1111
"sort-packages": true

vendor-bin/php-cs-fixer/composer.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor-bin/phpstan/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"require": {
3-
"php": "^7.1 || ^8.0",
3+
"php": "^7.4 || ^8.0",
44
"phpstan/extension-installer": "^1.1.0",
55
"phpstan/phpstan": "^0.12.100",
66
"phpstan/phpstan-deprecation-rules": "^0.12.6"
77
},
88
"config": {
99
"platform": {
10-
"php": "7.1.33"
10+
"php": "7.4.32"
1111
},
1212
"preferred-install": "dist",
1313
"sort-packages": true,

vendor-bin/phpstan/composer.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor-bin/psalm/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"require": {
3-
"php": "^7.1 || ^8.0",
3+
"php": "^7.4 || ^8.0",
44
"vimeo/psalm": "^4.30.0"
55
},
66
"config": {
77
"platform": {
8-
"php": "7.1.33"
8+
"php": "7.4.32"
99
},
1010
"preferred-install": "dist",
1111
"sort-packages": true,

0 commit comments

Comments
 (0)