Skip to content

Commit 3131549

Browse files
Update dependencies
1 parent 205ab4f commit 3131549

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ${{ matrix.operating-system }}
99
strategy:
1010
matrix:
11-
operating-system: ['ubuntu-18.04']
11+
operating-system: ['ubuntu-latest']
1212
php-versions: ['7.0']
1313
phpunit-versions: ['7.5.20']
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717

1818
- name: Setup PHP
1919
uses: shivammathur/setup-php@v2
@@ -24,7 +24,7 @@ jobs:
2424
tools: psalm, phpunit:${{ matrix.phpunit-versions }}
2525

2626
- name: Install dependencies
27-
run: composer self-update --1; composer install
27+
run: composer self-update; composer remove --dev vimeo/psalm; composer install
2828

2929
- name: PHPUnit tests
3030
uses: php-actions/phpunit@v2
@@ -41,7 +41,7 @@ jobs:
4141
phpunit-versions: ['latest']
4242
steps:
4343
- name: Checkout
44-
uses: actions/checkout@v2
44+
uses: actions/checkout@v4
4545

4646
- name: Setup PHP
4747
uses: shivammathur/setup-php@v2
@@ -66,7 +66,7 @@ jobs:
6666
strategy:
6767
matrix:
6868
operating-system: ['ubuntu-latest']
69-
php-versions: ['7.4', '8.0', '8.1']
69+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
7070
phpunit-versions: ['latest']
7171
steps:
7272
- name: Checkout

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
"require": {
66
"php": "^7|^8",
77
"guzzlehttp/psr7": "^1",
8-
"paragonie/constant_time_encoding": "^2",
9-
"paragonie/sodium_compat": ">= 1.15.4",
8+
"paragonie/constant_time_encoding": "^2|^3",
9+
"paragonie/sodium_compat": ">= 1.15.4 || >= 2.1",
1010
"psr/http-message": "^1"
1111
},
1212
"require-dev": {
13-
"guzzlehttp/guzzle": "^6|^7",
14-
"phpunit/phpunit": "^6|^7|^8|^9",
13+
"guzzlehttp/guzzle": "^7",
14+
"phpunit/phpunit": "^6|^7|^8|^9|^10",
1515
"vimeo/psalm": "^2|^3|^4"
1616
},
1717
"suggest": {

0 commit comments

Comments
 (0)