Skip to content

Commit

Permalink
Update composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardonakagawa committed Jan 30, 2025
1 parent 55147eb commit bd844b4
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 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": "Amazon Selling Partner APIs official client library.",
"description": "This library provides helper classes for use when signing HTTP requests for Amazon Selling Partner APIs.",
"type": "library",
"keywords": [
"sp-api",
Expand All @@ -19,35 +19,33 @@
}
],
"require": {
"php": "^8.3",
"php": "^7.4 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^8.3",
"guzzlehttp/guzzle": "^7.3",
"guzzlehttp/psr7": "^2.0",
"aws/aws-sdk-php": "^3.228",
"symfony/http-kernel": "^7.2",
"symfony/rate-limiter": "^7.2",
"vlucas/phpdotenv": "^5.6",
"ext-openssl": "*"
"symfony/http-kernel": "^5.4",
"symfony/rate-limiter": "^5.2",
"vlucas/phpdotenv": "^5.5"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"SpApi\\AuthAndAuth\\": "src/authandauth/",
"SpApi\\AuthAndAuth\\": "sdk/src/authandauth",
"OpenAPI\\Client\\": "sdk/lib/",
"OpenAPI\\Client\\Test\\" : "sdk/test/"
}
},
"autoload-dev": {
"psr-4": {
"SpApi\\Test\\AuthAndAuth\\" : "tests/authandauth/",
"OpenAPI\\Client\\": "sdk/lib/"
"SpApi\\Test\\AuthAndAuth\\" : "sdk/src/tests/authandauth/"
}
},
"scripts": {
"fix": "phpcs --standard=PSR12 src/authandauth tests/authandauth",
"test": "phpunit tests/authandauth"
"fix": "phpcs --standard=PSR12 sdk/src/authandauth sdk/src/tests/",
"test": "phpunit sdk/tests/authandauth"
}
}

0 comments on commit bd844b4

Please sign in to comment.