From cc65ac316bef9a8e20a8141d60d0c4358f040950 Mon Sep 17 00:00:00 2001 From: Tim van Dijen Date: Fri, 8 Dec 2023 00:13:34 +0100 Subject: [PATCH] Bump dependencies --- .github/workflows/php.yml | 14 +++++++------- composer.json | 12 ++++++------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index c23d77b..bc5c2d6 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -47,7 +47,7 @@ jobs: uses: shivammathur/setup-php@v2 with: # Should be the higest supported version, so we can use the newest tools - php-version: '8.2' + php-version: '8.3' tools: composer, composer-require-checker, composer-unused, phpcs, psalm # optional performance gain for psalm: opcache extensions: ctype, date, dom, fileinfo, filter, hash, intl, mbstring, opcache, openssl, \ @@ -114,7 +114,7 @@ jobs: uses: shivammathur/setup-php@v2 with: # Should be the lowest supported version - php-version: '8.0' + php-version: '8.1' extensions: ctype, date, dom, fileinfo, filter, hash, intl, mbstring, openssl, pcre, posix, soap, spl, xml tools: composer coverage: none @@ -154,7 +154,7 @@ jobs: fail-fast: false matrix: operating-system: [ubuntu-latest] - php-versions: ['8.0', '8.1', '8.2'] + php-versions: ['8.1', '8.2', '8.3'] steps: - name: Setup PHP, with composer and extensions @@ -194,15 +194,15 @@ jobs: run: composer install --no-progress --prefer-dist --optimize-autoloader - name: Run unit tests with coverage - if: ${{ matrix.php-versions == '8.2' }} + if: ${{ matrix.php-versions == '8.3' }} run: vendor/bin/phpunit - name: Run unit tests (no coverage) - if: ${{ matrix.php-versions != '8.2' }} + if: ${{ matrix.php-versions != '8.3' }} run: vendor/bin/phpunit --no-coverage - name: Save coverage data - if: ${{ matrix.php-versions == '8.2' }} + if: ${{ matrix.php-versions == '8.3' }} uses: actions/upload-artifact@v3 with: name: coverage-data @@ -216,7 +216,7 @@ jobs: fail-fast: true matrix: operating-system: [windows-latest] - php-versions: ['8.0', '8.1', '8.2'] + php-versions: ['8.1', '8.2', '8.3'] steps: - name: Setup PHP, with composer and extensions diff --git a/composer.json b/composer.json index 5f0e8bb..e96bd0a 100644 --- a/composer.json +++ b/composer.json @@ -31,20 +31,20 @@ } }, "require": { - "php": "^8.0", + "php": "^8.1", "ext-dom": "*", - "robrichards/xmlseclibs": "^3.1.1", - "simplesamlphp/assert": "^1.0.4", + "robrichards/xmlseclibs": "^3.1", + "simplesamlphp/assert": "^1.0", "simplesamlphp/saml2": "^5.0.0@dev", "simplesamlphp/simplesamlphp": "^3@dev", "simplesamlphp/xml-common": "^1.12", "tvdijen/ws-security": "^1@dev", - "symfony/http-foundation": "^6.0" + "symfony/http-foundation": "^6.4" }, "require-dev": { - "simplesamlphp/simplesamlphp-test-framework": "^1.5.4", - "simplesamlphp/xml-security": "^1.6.0" + "simplesamlphp/simplesamlphp-test-framework": "^1.5", + "simplesamlphp/xml-security": "^1.6" }, "support": { "issues": "https://github.com/simplesamlphp/simplesamlphp-module-adfs/issues",