Skip to content

Commit

Permalink
Upgrade pipelines version of PHP and Symfony
Browse files Browse the repository at this point in the history
  • Loading branch information
gregurco committed Jan 2, 2025
1 parent b8de4c1 commit e9a6e08
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
os: [ubuntu-latest]
php:
- '7.2'
- '8.3'
- '8.4'
symfony:
- '5.0.*'
- '5.4.*' # LTS
- '6.0.*'
- '7.0.*'
- '7.2.*'
exclude:
- php: '7.2'
symfony: '6.0.*' # requires PHP >=8.1
- php: '7.2'
symfony: '7.0.*' # requires PHP >=8.2
symfony: '7.2.*' # requires PHP >=8.2

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ GuzzleBundle follows semantic versioning. Read more on [semver.org][2].
----

## Prerequisites
- PHP 7.1 or higher
- PHP 7.2 or higher
- Symfony 5.x or 6.x or 7.x

----
Expand Down
2 changes: 1 addition & 1 deletion tests/DependencyInjection/ConfigurationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public function testCustomHandlerOption()
* @param array $options
* @param null|array $expects
*/
public function testValidOptions(array $options, array $expects = null)
public function testValidOptions(array $options, ?array $expects = null)
{
$config = [
'eight_points_guzzle' => [
Expand Down

0 comments on commit e9a6e08

Please sign in to comment.