Skip to content

Commit fbe5399

Browse files
authored
Update codebase to PHP 7.4 (#21)
1 parent 55b859f commit fbe5399

File tree

13 files changed

+778
-653
lines changed

13 files changed

+778
-653
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",
@@ -55,7 +55,7 @@
5555
},
5656
"sort-packages": true,
5757
"platform": {
58-
"php": "7.3.0"
58+
"php": "7.4.0"
5959
}
6060
},
6161
"autoload": {

0 commit comments

Comments
 (0)