Skip to content

Commit

Permalink
Merge branch 'release/2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
adrenth committed May 28, 2021
2 parents dbf4122 + 5406e40 commit f88d4ac
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,23 @@ jobs:

runs-on: ubuntu-latest

strategy:
fail-fast: true
matrix:
php: [ 8.0, 7.4, 7.3, 7.2 ]
stability: [ prefer-lowest, prefer-stable ]

name: PHP ${{ matrix.php }} - ${{ matrix.stability }}

steps:
- uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none

- name: Validate composer.json and composer.lock
run: composer validate

Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@
}
],
"require": {
"php": "^7.2",
"hashids/hashids": "^4.0"
"php": "^7.2||^8.0",
"hashids/hashids": "^4.0",
"composer/installers": "^1.0"
},
"archive": {
"exclude": [
Expand Down
1 change: 1 addition & 0 deletions updates/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
- Code optimizations
- Moved service provider
2.0.0: Drop PHP 7.1 support
2.0.1: Update plugin dependencies

0 comments on commit f88d4ac

Please sign in to comment.