Skip to content

Commit 839443f

Browse files
committed
Fix build
1 parent 56db618 commit 839443f

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/php.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
uses: shivammathur/setup-php@v2
125125
with:
126126
php-version: ${{ matrix.php-versions }}
127-
extensions: ctype, date, dom, filter, hash, intl, mbstring, openssl, pcre,\
127+
extensions: ctype, date, dom, fileinfo, filter, hash, intl, mbstring, openssl, pcre,\
128128
soap, sodium, spl, xml, zip
129129
tools: composer
130130
ini-values: error_reporting=E_ALL
@@ -147,13 +147,14 @@ jobs:
147147
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
148148

149149
- name: Get COMPOSER_ROOT_VERSION from composer.json branch alias
150+
shell: bash
150151
run: |
151152
ROOT_VERSION=$(composer config extra.branch-alias.dev-master)
152153
if [ -z "$ROOT_VERSION" ]; then
153154
echo "Could not read extra.branch-alias.dev-master from composer.json" >&2
154155
exit 1
155156
fi
156-
echo "COMPOSER_ROOT_VERSION=$ROOT_VERSION" >> "$GITHUB_ENV"
157+
echo "COMPOSER_ROOT_VERSION=$ROOT_VERSION" >> "$env:GITHUB_ENV"
157158
158159
- name: Cache composer dependencies
159160
uses: actions/cache@v5

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
"beste/clock": "~3.0",
4343
"mockery/mockery": "~1.6",
44-
"simplesamlphp/simplesamlphp": "2.5.*",
44+
"simplesamlphp/simplesamlphp": "^2.5",
4545
"simplesamlphp/simplesamlphp-test-framework": "~1.11",
4646
"icanhazstring/composer-unused": "^0.9.6"
4747
},

0 commit comments

Comments
 (0)