Skip to content

Commit e8c66ba

Browse files
authored
Update codebase to PHP 7.4 (#22)
1 parent ced19a6 commit e8c66ba

File tree

12 files changed

+644
-550
lines changed

12 files changed

+644
-550
lines changed

.github/workflows/symfony.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: true
2020
matrix:
21-
php-versions: ['7.3', '7.4', '8.0']
21+
php-versions: ['7.4', '8.0', '8.1']
2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@v2
@@ -56,5 +56,4 @@ jobs:
5656
run: php bin/console d:f:l -q
5757

5858
- name: Run functional tests
59-
run: |
60-
vendor/bin/codecept run Functional
59+
run: vendor/bin/codecept run Functional

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=7.3.0",
13+
"php": ">=7.4.0",
1414
"ext-ctype": "*",
1515
"ext-iconv": "*",
1616
"doctrine/doctrine-bundle": "^2.4",
@@ -52,7 +52,7 @@
5252
},
5353
"sort-packages": true,
5454
"platform": {
55-
"php": "7.3.0"
55+
"php": "7.4.0"
5656
}
5757
},
5858
"autoload": {

0 commit comments

Comments
 (0)