Skip to content

Commit

Permalink
Merge pull request #30 from Mondotosz/master
Browse files Browse the repository at this point in the history
fix: matched offsetSet and offsetUnset signature
  • Loading branch information
veelasky committed Sep 1, 2022
2 parents cfd7008 + 3d413c2 commit ff4aef8
Show file tree
Hide file tree
Showing 5 changed files with 546 additions and 637 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
php: [ 7.4, 8.0, 8.1]
php: [ 8.0, 8.1]
laravel: [9.*, 8.*, 7.*]
exclude:
- laravel: 9.*
php: 7.4
- laravel: 7.*
php: 8.1
include:
Expand Down Expand Up @@ -62,8 +60,8 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./clover.xml

- name: send coverage to codacy.com
uses: codacy/codacy-coverage-reporter-action@master
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: clover.xml
# - name: send coverage to codacy.com
# uses: codacy/codacy-coverage-reporter-action@master
# with:
# project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
# coverage-reports: clover.xml
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ Automatic HashId generator for your eloquent model.

### Version Compatibilities

| Laravel HashId | PHP Version | Laravel 5.* | Laravel 6.* | Laravel 7.* | Laravel 8.* | Laravel 9.* |
|---------------- |:---------------------: |:------------------: |:------------------: |:------------------: |:------------------: |:------------------: |
| `1.x` | `>=7.0` | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
| `2.x` | `>=7.2` - `<= 8.0` | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| `3.x` | `>=7.4` \|\| `>= 8.0` | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| Laravel HashId | PHP Version | Laravel 5.* | Laravel 6.* | Laravel 7.* | Laravel 8.* | Laravel 9.* |
|------------------|:----------------------:|:------------------: |:------------------: |:------------------: |:------------------: |:------------------: |
| `1.x` |`>=7.0` | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
| `2.x` |`>=7.2` - `<= 8.0` | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| `3.0` | `>=7.4` \ |\| `>= 8.0` | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| `3.1` | `>= 8.0` | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |

### Install

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"php" : "^7.4 || ^8.0",
"php" : "^8.0",
"hashids/hashids": "^4.0",
"illuminate/contracts": ">=6.18",
"illuminate/config": ">=6.18",
Expand Down
Loading

0 comments on commit ff4aef8

Please sign in to comment.