Skip to content

Commit 0b05008

Browse files
stobrien89Sean O'Brien
and
Sean O'Brien
authored
feat: 8.4 support and < 8.1 deprecation (#109)
Co-authored-by: Sean O'Brien <[email protected]>
1 parent 6613c20 commit 0b05008

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ permissions:
1212

1313
jobs:
1414
run:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-latest
1616
strategy:
1717
#for each of the following versions of PHP, with and without --prefer-lowest
1818
matrix:
19-
php-versions: ['7.2.5', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
19+
php-versions: ['8.1', '8.2', '8.3', '8.4']
2020
composer-options: ['', '--prefer-lowest']
2121
#set the name for each job
2222
name: PHP ${{ matrix.php-versions }} ${{ matrix.composer-options }}
@@ -53,7 +53,7 @@ jobs:
5353
run: composer require --dev phpunit/phpunit "^9.5" --no-interaction --prefer-source --with-all-dependencies
5454

5555
#php 8.1+ requirements
56-
- if: ${{ matrix.php-versions >= '8.1' && matrix.composer-options != '' }}
56+
- if: ${{matrix.composer-options != '' }}
5757
name: PHP 8.1+
5858
run: composer require --dev guzzlehttp/guzzle "^7.4.5" --no-interaction --prefer-source --with-all-dependencies
5959

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=7.2.5",
16-
"aws/aws-sdk-php": "^3.279.0",
15+
"php": ">=8.1",
16+
"aws/aws-sdk-php": "^3.338.0",
1717
"symfony/config": "~5.0|~6.0|~7.0",
1818
"symfony/dependency-injection": "~5.0|~6.0|~7.0",
1919
"symfony/http-kernel": "~5.0|~6.0|~7.0"

0 commit comments

Comments
 (0)