fillup / walmart-partner-api-sdk-php

PHP client for Walmart Partner APIs
MIT License
37 stars 51 forks source link

install issue #12

Closed kcallenxu closed 8 years ago

kcallenxu commented 8 years ago

use composer to install: composer.json: { "minimum-stability": "dev", "require": { "fillup/walmart-partner-api-sdk-php": "^1.0.5" } }

fillup commented 8 years ago

Sorry, I'll update the readme. You need to explicitly require "guzzlehttp/guzzle-services": "dev-master". I'm hoping that project can create a new version tag so that it will be considered stable, but in the mean time you need to include dev-master for it yourself so guzzle doesn't complain. So update your require to be (at least):

{
  "require": {
    "fillup/walmart-partner-api-sdk-php": "^1.0.5",
    "guzzlehttp/guzzle-services": "dev-master"
  }
}

Let me know if that resolves it for you or if you have a different issue.