Skip to content

Commit

Permalink
feat: add build and support for php 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
valentin-claras committed Sep 1, 2021
1 parent 4b1835b commit bb0f4fd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
php: [ '7.3', '7.4' ]
php: [ '7.3', '7.4', '8.0' ]

steps:
- name: 'Init repository'
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/vendor/
/composer.lock
/.php-cs-fixer.cache
/.phpunit.result.cache
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@
}
},
"require": {
"php": "^7.3",
"php": "^7.3|^8.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"phpunit/phpunit": "^9.4.4",
"amphp/amp": "^2.0",
"guzzlehttp/guzzle": "^6.3",
"m6web/php-cs-fixer-config": "^2.0",
"ext-curl": "^7.3",
"ext-curl": "^7.3|^8.0",
"react/event-loop": "^1.0",
"react/promise": "^2.7",
"phpstan/phpstan": "^0.12",
Expand Down

0 comments on commit bb0f4fd

Please sign in to comment.