Skip to content

Commit 6bba977

Browse files
authored
Merge pull request #3 from amaccis/allow-php-8
Allow php 8
2 parents 343d18d + 842cbf5 commit 6bba977

File tree

6 files changed

+934
-333
lines changed

6 files changed

+934
-333
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
container:
13-
image: amaccis/php-libstemmer:2.0.0
13+
image: amaccis/php-libstemmer:2.1.0
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# php-stemmer
22

3-
[![PHP Version](https://img.shields.io/badge/php-%5E7.4-blue.svg)](https://img.shields.io/badge/php-%5E7.4-blue.svg)
3+
[![PHP Version](https://img.shields.io/badge/php-%5E7.4%7C%5E8.0-blue.svg)](https://img.shields.io/badge/php-%5E7.4%7C%5E8.0-blue.svg)
44
![CI](https://github.com/amaccis/php-stemmer/workflows/CI/badge.svg)
55

66
## What is PHP Stemmer?

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
}
1515
},
1616
"require": {
17-
"php": "^7.4",
17+
"php": "^7.4 || ^8.0",
1818
"ext-ffi": "*"
1919
},
2020
"require-dev": {
21-
"phpunit/phpunit": "^8",
22-
"phpstan/phpstan": "^0.12.11"
21+
"phpunit/phpunit": "^9.5",
22+
"phpstan/phpstan": "^0.12"
2323
}
2424
}

0 commit comments

Comments
 (0)