Skip to content

Commit e632526

Browse files
committed
Fix dependencies
1 parent 326f791 commit e632526

4 files changed

Lines changed: 73 additions & 73 deletions

File tree

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v3
2222

2323
- name: Lint markdown files
24-
uses: nosborn/github-action-markdown-cli@v3.2.0
24+
uses: nosborn/github-action-markdown-cli@v3
2525
with:
2626
files: .
2727
ignore_path: .markdownlintignore

.github/workflows/php.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jobs:
4848
php-version: '8.2'
4949
tools: composer, composer-require-checker, composer-unused, phpcs, psalm
5050
# optional performance gain for psalm: opcache
51-
extensions: ctype, date, dom, filter hash, intl, json, mbstring, mysql, \
52-
opcache, openssl, pcre, pdo, pdo_sqlite, spl, xml
51+
extensions: ctype, date, dom, fileinfo, filter, hash, intl, json, mbstring, mysql, \
52+
opcache, openssl, pcre, pdo, pdo_sqlite, posix, spl, xml
5353
coverage: none
5454

5555
- name: Setup problem matchers for PHP
@@ -78,7 +78,7 @@ jobs:
7878
run: composer-require-checker check --config-file=tools/composer-require-checker.json composer.json
7979

8080
- name: Check code for unused dependencies in composer.json
81-
run: composer-unused --excludePackage=simplesamlphp/simplesamlphp-assets-base --excludePackage=simplesamlphp/simplesamlphp-module-adfs
81+
run: composer-unused --excludePackage=simplesamlphp/simplesamlphp-assets-base
8282

8383
- name: PHP Code Sniffer
8484
run: phpcs
@@ -115,8 +115,8 @@ jobs:
115115
with:
116116
# Should be the lowest supported version
117117
php-version: '8.0'
118-
extensions: ctype, date, dom, hash, filter, intl, json, mbstring, mysql, \
119-
openssl, pcre, pdo, pdo_sqlite, spl, xml
118+
extensions: ctype, date, dom, hash, fileinfo, filter, intl, json, mbstring, mysql, \
119+
openssl, pcre, pdo, pdo_sqlite, posix, spl, xml
120120
tools: composer
121121
coverage: none
122122

@@ -163,8 +163,8 @@ jobs:
163163
uses: shivammathur/setup-php@v2
164164
with:
165165
php-version: ${{ matrix.php-versions }}
166-
extensions: ctype, date, dom, filter, hash, intl, json, mbstring, mysql, openssl, pcre,\
167-
pdo, pdo_sqlite, spl, xdebug, xml
166+
extensions: ctype, date, dom, fileinfo, filter, hash, intl, json, mbstring, mysql, openssl, pcre,\
167+
pdo, pdo_sqlite, posix, spl, xdebug, xml
168168
tools: composer
169169
ini-values: error_reporting=E_ALL, pcov.directory=.
170170
coverage: pcov
@@ -226,8 +226,8 @@ jobs:
226226
uses: shivammathur/setup-php@v2
227227
with:
228228
php-version: ${{ matrix.php-versions }}
229-
extensions: ctype, dom, date, filter, hash, intl, json, mbstring, mysql, openssl, pcre, \
230-
pdo, pdo_sqlite, spl, xdenug, xml
229+
extensions: ctype, dom, date, fileinfo, filter, hash, intl, json, mbstring, mysql, openssl, pcre, \
230+
pdo, pdo_sqlite, posix, spl, xdebug, xml
231231
tools: composer
232232
ini-values: error_reporting=E_ALL
233233
coverage: none
@@ -256,7 +256,7 @@ jobs:
256256
restore-keys: ${{ runner.os }}-composer-
257257

258258
- name: Install Composer dependencies
259-
run: composer install --no-progress --prefer-dist --optimize-autoloader
259+
run: composer install --no-progress --prefer-dist --optimize-autoloader --ignore-platform-req=ext-posix
260260

261261
- name: Run unit tests
262262
run: vendor/bin/phpunit --no-coverage

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@
6969
"simplesamlphp/assert": "^1.0.0",
7070
"simplesamlphp/saml2": "^4.6",
7171
"simplesamlphp/simplesamlphp-assets-base": "^2.0",
72-
"simplesamlphp/simplesamlphp-module-adfs": "3.0.x-dev",
7372
"symfony/cache": "^5.4||^6",
7473
"symfony/config": "^5.4||^6",
7574
"symfony/console": "^5.4||^6",
@@ -90,6 +89,7 @@
9089
},
9190
"require-dev": {
9291
"mikey179/vfsstream": "~1.6",
92+
"simplesamlphp/simplesamlphp-module-adfs": "3.0.x-dev",
9393
"simplesamlphp/simplesamlphp-test-framework": "^1.5.1",
9494
"simplesamlphp/xml-security": "^1.6.0"
9595
},

composer.lock

Lines changed: 61 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)