Skip to content

Commit

Permalink
Merge pull request #3 from tarfin-labs/php8-support
Browse files Browse the repository at this point in the history
PHP 8 support added.
  • Loading branch information
tkaratug committed Jun 3, 2021
2 parents 45f527f + 5214aa2 commit c9f69b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [7.2, 7.3, 7.4]
php: [7.2, 7.3, 7.4, 8.0]
dependency-version: [prefer-lowest, prefer-stable]

name: P${{ matrix.php }} - ${{ matrix.dependency-version }}
Expand Down
19 changes: 0 additions & 19 deletions .scrutinizer.yml

This file was deleted.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to `zbar-php` will be documented in this file

## Unreleased

## 1.2.0 - 2021-06-03
- PHP 8 support added.

## 1.1.0 - 2020-10-14
- Better error messages.

Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@
}
],
"require": {
"php": "^7.2",
"php": "^7.2 || ^8.0",
"ext-imagick": "*",
"symfony/process": "^4.4|^5.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
"phpunit/phpunit": "^8.5|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit c9f69b6

Please sign in to comment.