-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat!: update all dependencies to latest supported versions #88
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "m6web/guzzle-http-bundle", | ||
"type" : "symfony-bundle", | ||
"description": "Symfony2 bundle on top of guzzle 6", | ||
"description": "Symfony bundle on top of Guzzle", | ||
"keywords": ["bundle", "http", "client", "HTTP client"], | ||
"license" : "MIT", | ||
"authors": [ | ||
|
@@ -12,21 +12,21 @@ | |
} | ||
], | ||
"require": { | ||
"php": ">=7.4", | ||
"php": ">=8.1", | ||
"ext-curl": "*", | ||
"guzzlehttp/guzzle": "^6.3||^7.0", | ||
"symfony/config" : "^4.4||^5.0||^6.0", | ||
"symfony/dependency-injection": "^4.4||^5.0||^6.0", | ||
"symfony/event-dispatcher": "^4.4||^5.0||^6.0", | ||
"symfony/http-kernel": "^4.4||^5.0||^6.0", | ||
"symfony/yaml" : "^4.4||^5.0||^6.0" | ||
"guzzlehttp/guzzle": "^7", | ||
"symfony/config" : "^5.4||^6.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ℹ️ Symfony 4.4 is still supported by Symfony ("security fixes only") until November... but it should be fine to release this before November 👍 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As PHP8.0... but I guessed it was the time to make some cleanup. 🤷♂️ |
||
"symfony/dependency-injection": "^5.4||^6.0", | ||
"symfony/event-dispatcher": "^5.4||^6.0", | ||
"symfony/http-kernel": "^5.4||^6.0", | ||
"symfony/yaml" : "^5.4||^6.0" | ||
}, | ||
"require-dev": { | ||
"atoum/atoum": "4.0.3", | ||
"atoum/atoum": "4.2.0", | ||
"atoum/stubs": "*", | ||
"m6web/php-cs-fixer-config": "2.0.0", | ||
"friendsofphp/php-cs-fixer": "3.34.1", | ||
"guzzlehttp/promises": "^1" | ||
"m6web/php-cs-fixer-config": "3.2.0", | ||
"friendsofphp/php-cs-fixer": "3.35.1", | ||
"guzzlehttp/promises": "^2" | ||
}, | ||
"autoload": { | ||
"psr-4": {"M6Web\\Bundle\\GuzzleHttpBundle\\": "src/"} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace M6Web\Bundle\GuzzleHttpBundle\Cache; | ||
|
||
/** | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
much discrimination, such sadness
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm planing to add a bit of rector & phpstan, that's why 😁
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
=> #89