Skip to content

Commit 4bfdfa0

Browse files
authored
Merge pull request #74 from battye/upgrade/symfony-3.4
Update to Symfony 3.4 / PHP 7.4 compatibility
2 parents 753b51f + 2fde849 commit 4bfdfa0

File tree

10 files changed

+1091
-508
lines changed

10 files changed

+1091
-508
lines changed

.github/workflows/phpunit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
php: ['7.0', '7.1', '7.2', '7.3', '7.4']
11+
php: ['7.4']
1212

1313
name: PHP ${{ matrix.php }} tests
1414
steps:

composer.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "phpbb/translation-validator",
33
"description": "A language package validator for phpBB language packs. Language packs are required to pass the validator when submitted to the language pack database.",
44
"homepage": "https://github.com/phpbb/phpbb-translation-validator",
5-
"version": "1.5.3",
5+
"version": "1.6.0",
66
"license": "GPL-2.0-only",
77
"authors": [
88
{
@@ -20,19 +20,22 @@
2020
],
2121
"minimum-stability": "stable",
2222
"require": {
23-
"php": ">=5.5.9",
24-
"symfony/yaml": "~3.0",
25-
"symfony/console": "~3.0",
26-
"symfony/finder": "~3.0",
23+
"php": "~7.4",
24+
"symfony/yaml": "~3.4",
25+
"symfony/console": "~3.4",
26+
"symfony/finder": "~3.4",
2727
"battye/php-array-parser": "~1.0"
2828
},
2929
"require-dev": {
30-
"phpunit/phpunit": "~5.7"
30+
"phpunit/phpunit": "~9.0"
3131
},
3232
"bin": [
3333
"translation.php"
3434
],
3535
"config": {
36+
"platform": {
37+
"php": "7.4.33"
38+
},
3639
"bin-dir": "bin"
3740
},
3841
"autoload": {

0 commit comments

Comments
 (0)