Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Dec 11, 2023
1 parent c605a4c commit b7d1341
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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, filter, libxml, opcache, pcre, spl, xml
Expand Down Expand Up @@ -113,7 +113,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, filter, libxml, pcre, spl, xml
tools: composer
coverage: none
Expand Down Expand Up @@ -153,7 +153,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
Expand Down Expand Up @@ -193,15 +193,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
Expand All @@ -215,7 +215,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
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@
}
},
"require": {
"php": "^8.0",
"php": "^8.1",
"ext-date": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-pcre": "*",
"ext-spl": "*",
"ext-xmlreader": "*",

"simplesamlphp/assert": "^1.0.4"
"simplesamlphp/assert": "^1.0"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "^1.5.5"
"simplesamlphp/simplesamlphp-test-framework": "^1.5"
},
"support": {
"issues": "https://github.com/simplesamlphp/xml-common/issues",
Expand Down

0 comments on commit b7d1341

Please sign in to comment.