Skip to content

Commit

Permalink
Allow PHP 8, add to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
HypeMC committed Jan 9, 2021
1 parent a7ba5ef commit 0e68656
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: [ '7.2', '7.3', '7.4' ]
php-versions: [ '7.2', '7.3', '7.4', '8.0' ]
symfony-versions: [ '4.4', '5.2' ]
composer-prefer: [ '', '--prefer-stable --prefer-lowest' ]
env:
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@
}
],
"require": {
"php": "^7.2",
"php": ">=7.2",
"ext-dom": "*",
"symfony/config": "^4.4 || ^5.2",
"symfony/console": "^4.4 || ^5.2",
"symfony/dependency-injection": "^4.4 || ^5.2",
"symfony/http-kernel": "^4.4 || ^5.2",
"symfony/process": "^4.4 || ^5.2",
"symfony/yaml": "^4.4 || ^5.2"
"symfony/config": "^4.4.12 || ^5.2",
"symfony/console": "^4.4.12 || ^5.2",
"symfony/dependency-injection": "^4.4.12 || ^5.2",
"symfony/http-kernel": "^4.4.12 || ^5.2",
"symfony/process": "^4.4.12 || ^5.2",
"symfony/yaml": "^4.4.12 || ^5.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16.3",
"phpstan/phpstan": "^0.12.37",
"symfony/phpunit-bridge": "^4.4 || ^5.2"
"symfony/phpunit-bridge": "^4.4.12 || ^5.2"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 0e68656

Please sign in to comment.