Skip to content

Commit 182d4d8

Browse files
committed
Add missing extension to list of direct dependencies
1 parent b49a929 commit 182d4d8

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/php.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
uses: shivammathur/setup-php@v2
5757
with:
5858
php-version: ${{ matrix.php-versions }}
59-
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, spl, xml
59+
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, random, spl, xml
6060
tools: composer
6161
ini-values: error_reporting=E_ALL
6262
coverage: pcov
@@ -121,7 +121,7 @@ jobs:
121121
uses: shivammathur/setup-php@v2
122122
with:
123123
php-version: ${{ matrix.php-versions }}
124-
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, spl, xml
124+
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, random, spl, xml
125125
tools: composer
126126
ini-values: error_reporting=E_ALL
127127
coverage: none
@@ -219,7 +219,7 @@ jobs:
219219
with:
220220
# Should be the lowest supported version
221221
php-version: '8.1'
222-
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, spl, xml
222+
extensions: ctype, date, dom, filter, hash, mbstring, openssl, pcre, random, spl, xml
223223
tools: composer
224224
coverage: none
225225

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,14 @@
4141
"ext-mbstring": "*",
4242
"ext-openssl": "*",
4343
"ext-pcre": "*",
44+
"ext-random": "*",
4445
"ext-spl": "*",
4546

46-
"simplesamlphp/assert": "~1.8.1",
47+
"simplesamlphp/assert": "~1.8.2",
4748
"simplesamlphp/xml-common": "~2.0.0"
4849
},
4950
"require-dev": {
50-
"simplesamlphp/simplesamlphp-test-framework": "~1.9.2"
51+
"simplesamlphp/simplesamlphp-test-framework": "~1.9.3"
5152
},
5253
"config": {
5354
"allow-plugins": {

0 commit comments

Comments
 (0)