PHPackages                             rewake/wish-php-sdk - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. rewake/wish-php-sdk

ActiveLibrary

rewake/wish-php-sdk
===================

A PHP SDK for Wish merchants

v0.1.1(6y ago)12834Apache-2.0PHPPHP &gt;5.3.0

Since Nov 19Pushed 6y ago1 watchersCompare

[ Source](https://github.com/rewake/wish-php-sdk)[ Packagist](https://packagist.org/packages/rewake/wish-php-sdk)[ Docs](http://merchant.wish.com/api/documentation)[ RSS](/packages/rewake-wish-php-sdk/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Wish SDK for PHP
================

[](#wish-sdk-for-php)

NOTE
----

[](#note)

This is a copy of the last version of the context logic wish/php-sdk, who killed off the original repo.

Important Announcement
----------------------

[](#important-announcement)

This PHP SDK will no longer be maintained. The repo will be closed by end of September 2019. We are sorry for this decision, however this would allow us to focus on on improving API usability and documentation. If you set up any dependency on this repo, we kindly ask you to prepare for the close of it in the coming weeks.

Documentation
-------------

[](#documentation)

Install Instructions
--------------------

[](#install-instructions)

Download composer:

```
curl -sS https://getcomposer.org/installer | php

```

Add wish/wish-sdk-php as a dependect in your project's composer.json

```
{
  "minimum-stability": "dev",
  "require":{
      "wish/php-sdk":"*"
  }
}

```

Run the following:

```
php composer.phar install

```

Put the following at the top of your file:

```
require 'vendor/autoload.php'

```

Sample

```
