PHPackages                             captajo/ebay-sdk-php - 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. [API Development](/categories/api)
4. /
5. captajo/ebay-sdk-php

ActiveLibrary[API Development](/categories/api)

captajo/ebay-sdk-php
====================

An eBay SDK for PHP. Use the eBay API in your PHP projects.

098PHP

Since Jul 18Pushed 2y agoCompare

[ Source](https://github.com/captajo/ebay-sdk-php)[ Packagist](https://packagist.org/packages/captajo/ebay-sdk-php)[ RSS](/packages/captajo-ebay-sdk-php/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

EBAY-SDK-PHP
============

[](#ebay-sdk-php)

**This repository is updated from [davidtsadler](https://github.com/davidtsadler/ebay-sdk-php) repository.**

This project enables PHP developers to use the [eBay API](https://go.developer.ebay.com/api-documentation) in their PHP code, and build software using services such as [Finding](http://developer.ebay.com/Devzone/finding/Concepts/FindingAPIGuide.html), [Trading](http://developer.ebay.com/DevZone/guides/ebayfeatures/index.html), [Shopping](http://developer.ebay.com/Devzone/shopping/docs/Concepts/ShoppingAPIGuide.html), etc. You can get started by [installing the SDK via Composer](https://github.com/davidtsadler/ebay-sdk-php/wiki/Installation) and by following the [Basic Usage Guide](http://devbay.net/sdk/guides/getting-started/basic-usage.html).

This is a personal project that has been updated by me, [Jonathan Ijeh](https://twitter.com/kingdijk). I decided to update this project for personal use in my application and later decided to publish, with the original repo archived. It is in no way endorsed, sponsored or maintained by eBay.

Features
--------

[](#features)

- Compatible with PHP 5.5 or greater.
- Easy to install with [Composer](http://getcomposer.org/).
- Compliant with [PSR-1](http://www.php-fig.org/psr/psr-1/), [PSR-2](http://www.php-fig.org/psr/psr-2/) and [PSR-4](http://www.php-fig.org/psr/psr-4/).

Resources
---------

[](#resources)

- [User Guides](https://github.com/davidtsadler/ebay-sdk-php/wiki) - Getting started guide and in-depth information.
- [Examples](https://github.com/davidtsadler/ebay-sdk-examples) - Several examples of using the SDK.

Requirements
------------

[](#requirements)

- PHP 5.5 or greater with the following extensions:
    - cURL
    - libxml
- 64 bit version of PHP recommended as there are some [issues when using the SDK with 32 bit](http://devbay.net/sdk/guides/getting-started/requirements.html#using-the-sdk-with-32-bit-systems).
- SSL enabled on the cURL extension so that https requests can be made.

Installation
------------

[](#installation)

The SDK can be installed with [Composer](http://getcomposer.org/). Please see the [Installation section of the User Guide](https://github.com/davidtsadler/ebay-sdk-php/wiki/Installation) to learn about installing through other means.

1. Install Composer.

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

    ```
2. Install the SDK.

    ```
    php composer.phar require captajo/ebay-sdk-php

    ```
3. Require Composer's autoloader by adding the following line to your code.

    ```
    require 'vendor/autoload.php';
    ```

Example
-------

[](#example)

### Get the official eBay time

[](#get-the-official-ebay-time)

```
