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

Updates in php composer #4580

Merged
merged 1 commit into from
Jan 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions clients/sellingpartner-api-aa-php/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "spapi/auth-and-auth",
"description": "This library provides helper classes for use when signing HTTP requests for Amazon Selling Partner APIs.",
"description": "Amazon Selling Partner APIs official client library.",
"type": "library",
"keywords": [
"sp-api",
Expand All @@ -19,17 +19,21 @@
}
],
"require": {
"php": "^7.4 || ^8.0",
"php": "^8.3",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/psr7": "^2.0",
"aws/aws-sdk-php": "^3.228",
"symfony/http-kernel": "^5.4",
"symfony/rate-limiter": "^5.2",
"vlucas/phpdotenv": "^5.5"
"symfony/http-kernel": "^7.2",
"symfony/rate-limiter": "^7.2",
"vlucas/phpdotenv": "^5.6",
"ext-openssl": "*"
},
"conflict": {
"guzzlehttp/guzzle": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
Expand All @@ -48,4 +52,4 @@
"fix": "phpcs --standard=PSR12 sdk/src/authandauth sdk/src/tests/",
"test": "phpunit sdk/tests/authandauth"
}
}
}