Skip to content

Commit

Permalink
Merge pull request #59 from paragonie/unsafe-hashes
Browse files Browse the repository at this point in the history
Unsafe hashes
  • Loading branch information
paragonie-security authored Oct 1, 2022
2 parents 3841889 + 81d4891 commit 613c0d2
Show file tree
Hide file tree
Showing 4 changed files with 146 additions and 96 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1']
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']

continue-on-error: ${{ matrix.php-versions == '8.1' }}
continue-on-error: ${{ matrix.php-versions == '8.2' }}

steps:
- name: Checkout
Expand All @@ -26,11 +26,11 @@ jobs:
coverage: none

- name: Install Composer dependencies (PHP < 8.1)
if: ${{ matrix.php-versions != '8.1' }}
if: ${{ matrix.php-versions != '8.2' }}
uses: "ramsey/composer-install@v1"

- name: Install Composer dependencies - ignore-platform-reqs (PHP 8.1)
if: ${{ matrix.php-versions == '8.1' }}
if: ${{ matrix.php-versions == '8.2' }}
uses: "ramsey/composer-install@v1"
with:
composer-options: --ignore-platform-reqs
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
},
"require": {
"php": "^7.1|^8",
"ext-json": "*",
"paragonie/constant_time_encoding": "^2",
"psr/http-message": "^1"
},
Expand Down
Loading

0 comments on commit 613c0d2

Please sign in to comment.