Skip to content

Commit

Permalink
Merge pull request #74 from battye/upgrade/symfony-3.4
Browse files Browse the repository at this point in the history
Update to Symfony 3.4 / PHP 7.4 compatibility
  • Loading branch information
Crizz0 authored Sep 22, 2023
2 parents 753b51f + 2fde849 commit 4bfdfa0
Show file tree
Hide file tree
Showing 10 changed files with 1,091 additions and 508 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.0', '7.1', '7.2', '7.3', '7.4']
php: ['7.4']

name: PHP ${{ matrix.php }} tests
steps:
Expand Down
15 changes: 9 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "phpbb/translation-validator",
"description": "A language package validator for phpBB language packs. Language packs are required to pass the validator when submitted to the language pack database.",
"homepage": "https://github.com/phpbb/phpbb-translation-validator",
"version": "1.5.3",
"version": "1.6.0",
"license": "GPL-2.0-only",
"authors": [
{
Expand All @@ -20,19 +20,22 @@
],
"minimum-stability": "stable",
"require": {
"php": ">=5.5.9",
"symfony/yaml": "~3.0",
"symfony/console": "~3.0",
"symfony/finder": "~3.0",
"php": "~7.4",
"symfony/yaml": "~3.4",
"symfony/console": "~3.4",
"symfony/finder": "~3.4",
"battye/php-array-parser": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
"phpunit/phpunit": "~9.0"
},
"bin": [
"translation.php"
],
"config": {
"platform": {
"php": "7.4.33"
},
"bin-dir": "bin"
},
"autoload": {
Expand Down
Loading

0 comments on commit 4bfdfa0

Please sign in to comment.