Skip to content

Commit

Permalink
Update PHP versions tested against
Browse files Browse the repository at this point in the history
  • Loading branch information
itismadness committed Dec 25, 2023
1 parent 10f8f2a commit 401f7c7
Show file tree
Hide file tree
Showing 4 changed files with 919 additions and 754 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['7.2', '7.4']
php-version: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']

steps:
- uses: actions/checkout@v2
Expand Down
11 changes: 8 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
},
"require": {
"php": ">=7.2",
"php": ">=7.3",
"ext-mbstring": "*",
"symfony/console": "^3.4 | ^4.0 | ^5.0",
"symfony/yaml": "^3.4 | ^4.0 | ^5.0",
Expand All @@ -25,12 +25,12 @@
"bin": ["bin/logchecker"],
"require-dev": {
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.5",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.5",
"brainmaestro/composer-git-hooks": "^2.8"
},
"scripts": {
"test": "phpunit -v",
"test": "phpunit",
"lint": "phpcs",
"lint:fix": "phpcbf",
"static-analysis": "phpstan analyze src/"
Expand All @@ -42,5 +42,10 @@
"composer run static-analysis"
]
}
},
"config": {
"platform": {

}
}
}
Loading

0 comments on commit 401f7c7

Please sign in to comment.