Skip to content

Commit

Permalink
Merge pull request #3 from soukicz/main
Browse files Browse the repository at this point in the history
Add PHP 8.0 support
  • Loading branch information
dvdheiden authored Feb 6, 2022
2 parents f042d0c + 67b843a commit 25df864
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@ on: [push]
jobs:
tests:
runs-on: ubuntu-latest

strategy:
matrix:
php-versions: ['7.4', '8.0']
steps:
- name: Checkout
uses: actions/checkout@v1

- name: Setup PHP
uses: shivammathur/setup-php@v1
with:
php-version: '7.4'
php-version: ${{ matrix.php-versions }}
extensions: mbstring, intl

- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
],
"require": {
"php": "^7.4",
"php": "^7.4|^8.0",
"ext-libxml": "*",
"ext-xmlreader": "*"
},
Expand Down

0 comments on commit 25df864

Please sign in to comment.