Skip to content

Commit

Permalink
Fix: Drop support for outdated PHP versions
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Dec 7, 2022
1 parent ca8f1cc commit e67b3d2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branch-alias.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
php-version: "8.0"
coverage: none

- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
php-version:
- 7.1
- "8.0"

steps:
- name: Checkout code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
php-version: [7.4]
php-version: ["8.0"]

steps:
- name: Checkout code
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:

strategy:
matrix:
php-version: [7.4]
php-version: ["8.0"]

steps:
- name: Checkout
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/tests.yml
Expand Up @@ -18,10 +18,6 @@ jobs:
operating-system:
- 'ubuntu-latest'
php-version:
- '7.1'
- '7.2'
- '7.3'
- '7.4'
- '8.0'
- '8.1'

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,8 @@

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

- Dropped support for outdated PHP versions (#543)

## [2022-07-20, v1.20.0](https://github.com/FakerPHP/Faker/compare/v1.19.0..v1.20.0)

- Fixed typo in French phone number (#452)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -15,7 +15,7 @@ It's heavily inspired by Perl's [Data::Faker](https://metacpan.org/pod/Data::Fak

### Installation

Faker requires PHP >= 7.1.
Faker requires PHP >= 8.0.

```shell
composer require fakerphp/faker
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -14,7 +14,7 @@
}
],
"require": {
"php": "^7.1 || ^8.0",
"php": "^8.0",
"psr/container": "^1.0 || ^2.0",
"symfony/deprecation-contracts": "^2.2 || ^3.0"
},
Expand Down

0 comments on commit e67b3d2

Please sign in to comment.