Skip to content

Commit cb5ee04

Browse files
authored
Merge pull request #66 from chadicus/v4-lib-curl
Allow for later version of lib-curl
2 parents e55b7cc + 80af148 commit cb5ee04

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/php.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,21 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: ubuntu-18.04
11+
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
php-versions: ['7.3', '7.4', '8.0', '8.1']
14+
php-versions: ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
15+
extensions:
16+
- 'mongodb-1.16.0'
1517
steps:
1618
- name: Checkout
1719
uses: actions/checkout@v2
1820
- name: Install PHP
1921
uses: shivammathur/setup-php@v2
2022
with:
2123
php-version: ${{ matrix.php-versions }}
24+
extensions: ${{ matrix.extensions }}
25+
tools: pecl
2226
- name: Validate composer.json and composer.lock
2327
run: composer validate
2428
- name: Install dependencies

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"php": "^7.3 || ^8.0",
2525
"ext-curl": "*",
2626
"ext-json": "*",
27-
"lib-curl": "~7.15",
27+
"lib-curl": ">=7.15",
2828
"fig/http-message-util": "^1.1",
2929
"guzzlehttp/guzzle": "^6.3",
3030
"psr/http-message": "^1.0",

0 commit comments

Comments
 (0)