Skip to content
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

[PHP] Add support for guzzlehttp/guzzle:^7.3 #11123

Open
Axent96 opened this issue Aug 5, 2021 · 13 comments · May be fixed by #11168
Open

[PHP] Add support for guzzlehttp/guzzle:^7.3 #11123

Axent96 opened this issue Aug 5, 2021 · 13 comments · May be fixed by #11168

Comments

@Axent96
Copy link

Axent96 commented Aug 5, 2021

add support for guzzlehttp/guzzle:^7.3

Description

It present now support for "guzzle http psr7 2.0" but composer need guzzlehttp/guzzle:^6.2 The version of guzzlehttp/guzzle dont support guzzlehttp/psr7: ^2.0 but only guzzlehttp/psr7:^1.6.1 (https://packagist.org/packages/guzzlehttp/guzzle#6.5.5) . guzzlehttp/psr7:^2.0 support since guzzlehttp/guzzle:^7.3 -> https://packagist.org/packages/guzzlehttp/guzzle#7.3.0

Lot of libraries dont support more guzzlehttp/guzzle:^6.2 & have conflict with upgrade to guzzlehttp/guzzle:^7.3

Swagger-codegen version

v3.0.27

Related issues/PRs

PR guzzle http psr7 2.0 compliant

@Axent96 Axent96 changed the title [PHP] Add support for guzzlehttp/guzzle:^7.0 [PHP] Add support for guzzlehttp/guzzle:^7.3 Aug 5, 2021
@rajatsib
Copy link

Hello

Is there any plan to add support for guzzlehttp/guzzle ^7.3 ?

@mmihalev
Copy link

Related PR only resolves the 2.0 master branch. How is this implemented in 3.0?

@heissb2342 heissb2342 linked a pull request Sep 15, 2021 that will close this issue
4 tasks
@DRN88
Copy link

DRN88 commented Nov 16, 2021

What is the status of this please? I have to use swagger-codegen 3.0.29 to generate OpenAPI v3 client sdk. But the guzzle is too old so I can't really do anything with the generated classes.
What is the solution? Can we get 7.x.x sorted out in codegen 3.0.x?

Thanks

Edit:
Plus PSR 7 functions are outdated too

# not working, it's deprecated:
$query = \GuzzleHttp\Psr7\build_query($queryParams);

# works
$query = \GuzzleHttp\Psr7\Query::build($queryParams);

@manzolo
Copy link

manzolo commented Jan 7, 2022

I tried to make #11199

@riccafi
Copy link
Contributor

riccafi commented Jan 11, 2022

Dear all,

is there a plan to cover this need during 2022?
#11199 would solve and provide a solution to these requests.

Thank you

@lalobo
Copy link

lalobo commented Apr 5, 2022

any news on this? It has become a big blocker

@wouter-toppy
Copy link

Any update on this? This is the only package leaving our WMS at guzzle 6.x

@rezapirighadim
Copy link

when I generate php still giving me guzzle 6.2
command that I used for generate
swagger-codegen generate -i https://x.com/api-docs -l php -o ~/Downloads/client

@essmd
Copy link

essmd commented Mar 17, 2023

Same here, using latest version 3.0.41 but still generates old build_query instead of Query::build and therefore i always have to Find/Replace methods in the PHP classes after generation. Whats the reason why this is so hard to merge?

@mmihalev
Copy link

I guess nobody gives a crap...

@DRN88
Copy link

DRN88 commented Mar 17, 2023 via email

@s2x
Copy link

s2x commented Jun 19, 2023

Maybe it'll help someone. In my case, it was enough to downgrade guzzlehttp/psr7 to version 1.9.1

composer require "guzzlehttp/psr7:^1.9" -W

@Axent96
Copy link
Author

Axent96 commented Mar 18, 2025

Hey guys, use openapi-generator - https://github.com/OpenAPITools/openapi-generator . This repo looks like deprecated

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.