Skip to content

Commit 7b2d9dd

Browse files
authored
Merge pull request #493 from ergebnis/fix/php72
Fix: Drop support for PHP 7.2
2 parents 393c196 + 6f0d3d1 commit 7b2d9dd

7 files changed

Lines changed: 12 additions & 14 deletions

File tree

.github/settings.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,10 @@ branches:
1515
required_status_checks:
1616
contexts:
1717
- "Code Coverage (7.4, locked)"
18-
- "Coding Standards (7.2, locked)"
18+
- "Coding Standards (7.3, locked)"
1919
- "Dependency Analysis (7.4, locked)"
2020
- "Mutation Tests (7.4, locked)"
2121
- "Static Code Analysis (7.4, locked)"
22-
- "Tests (7.2, highest)"
23-
- "Tests (7.2, locked)"
24-
- "Tests (7.2, lowest)"
2522
- "Tests (7.3, highest)"
2623
- "Tests (7.3, locked)"
2724
- "Tests (7.3, lowest)"

.github/workflows/integrate.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
php-version:
26-
- "7.2"
26+
- "7.3"
2727

2828
dependencies:
2929
- "locked"
@@ -198,7 +198,6 @@ jobs:
198198
strategy:
199199
matrix:
200200
php-version:
201-
- "7.2"
202201
- "7.3"
203202
- "7.4"
204203

.php_cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $license = License\Type\MIT::markdown(
2626

2727
$license->save();
2828

29-
$config = PhpCsFixer\Config\Factory::fromRuleSet(new PhpCsFixer\Config\RuleSet\Php71($license->header()), [
29+
$config = PhpCsFixer\Config\Factory::fromRuleSet(new PhpCsFixer\Config\RuleSet\Php73($license->header()), [
3030
'mb_str_functions' => false,
3131
]);
3232

.php_cs.fixture

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $license = License\Type\MIT::markdown(
2626

2727
$license->save();
2828

29-
$config = PhpCsFixer\Config\Factory::fromRuleSet(new PhpCsFixer\Config\RuleSet\Php71($license->header()), [
29+
$config = PhpCsFixer\Config\Factory::fromRuleSet(new PhpCsFixer\Config\RuleSet\Php73($license->header()), [
3030
'mb_str_functions' => false,
3131
'psr4' => false,
3232
]);

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ For a full diff see [`0.3.1...0.3.2`][0.3.1...0.3.2].
1515
### Fixed
1616

1717
* Started using `fakerphp/faker` instead of `fzaninotto/faker` ([#459]), by [@localheinz]
18+
* Dropped support for PHP 7.2 ([#493]), by [@localheinz]
1819

1920
## [`0.3.1`][0.3.1]
2021

@@ -220,5 +221,6 @@ For a full diff see [`fa9c564...0.1.0`][fa9c564...0.1.0].
220221
[#374]: https://github.com/ergebnis/factory-bot/pull/374
221222
[#375]: https://github.com/ergebnis/factory-bot/pull/375
222223
[#459]: https://github.com/ergebnis/factory-bot/pull/459
224+
[#493]: https://github.com/ergebnis/factory-bot/pull/493
223225

224226
[@localheinz]: https://github.com/localheinz

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^7.2",
21+
"php": "^7.3",
2222
"doctrine/annotations": "^1.7.0",
2323
"doctrine/collections": "^1.0.0",
2424
"doctrine/orm": "^2.6.3",
@@ -46,7 +46,7 @@
4646
},
4747
"config": {
4848
"platform": {
49-
"php": "7.2.25"
49+
"php": "7.3.24"
5050
},
5151
"preferred-install": "dist",
5252
"sort-packages": true

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.

0 commit comments

Comments
 (0)