Skip to content

Commit 5de0703

Browse files
committed
Remove PHP 7.1 and 7.2
1 parent b57b9fc commit 5de0703

File tree

3 files changed

+538
-275
lines changed

3 files changed

+538
-275
lines changed

.github/workflows/symfony.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: CI
33
on:
44
push:
55
branches:
6-
- main
6+
- 'main'
77
env:
88
APP_ENV: test
99

@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: true
1616
matrix:
17-
php-versions: ['7.2', '7.3', '7.4', '8.0']
17+
php-versions: ['7.3', '7.4', '8.0']
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v2.3.4

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=7.2.5",
13+
"php": ">=7.3.0",
1414
"ext-ctype": "*",
1515
"ext-iconv": "*",
1616
"doctrine/doctrine-bundle": "^2.2",
1717
"sensio/framework-extra-bundle": "^5.6",
1818
"symfony/apache-pack": "^1.0",
1919
"symfony/console": "5.2.*",
2020
"symfony/dotenv": "5.2.*",
21-
"symfony/flex": "^1.10",
21+
"symfony/flex": "^1.11",
2222
"symfony/form": "5.2.*",
2323
"symfony/framework-bundle": "5.2.*",
2424
"symfony/mailer": "5.2.*",
@@ -34,21 +34,21 @@
3434
"codeception/module-doctrine2": "^1.1",
3535
"codeception/module-phpbrowser": "^1.0",
3636
"codeception/module-rest": "^1.2",
37-
"codeception/module-symfony": "^1.5",
38-
"doctrine/doctrine-fixtures-bundle": "^3.3",
39-
"friendsofphp/php-cs-fixer": "^2.16",
37+
"codeception/module-symfony": "^1.5 | *@dev",
38+
"doctrine/doctrine-fixtures-bundle": "^3.4",
39+
"friendsofphp/php-cs-fixer": "^2.17",
4040
"phpmd/phpmd": "^2.9",
4141
"rector/rector": "^0.8",
4242
"roave/security-advisories": "dev-latest",
4343
"sensiolabs/security-checker": "^6.0",
4444
"squizlabs/php_codesniffer": "^3.5",
4545
"symfony/debug-bundle": "5.2.*",
46-
"symfony/maker-bundle": "^1.24",
46+
"symfony/maker-bundle": "^1.25",
4747
"symfony/twig-bundle": "5.2.*",
4848
"symfony/var-dumper": "5.2.*",
4949
"symfony/web-profiler-bundle": "5.2.*",
50-
"vimeo/psalm": "^4.2",
51-
"zenstruck/foundry": "^1.5"
50+
"vimeo/psalm": "^4.3",
51+
"zenstruck/foundry": "^1.6"
5252
},
5353
"config": {
5454
"optimize-autoloader": true,
@@ -57,7 +57,7 @@
5757
},
5858
"sort-packages": true,
5959
"platform": {
60-
"php": "7.2.5"
60+
"php": "7.3.0"
6161
}
6262
},
6363
"autoload": {

0 commit comments

Comments
 (0)