PHPackages                             mattybaer/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. mattybaer/ebay-sdk-php

ActiveLibrary[API Development](/categories/api)

mattybaer/ebay-sdk-php
======================

An eBay SDK for PHP with support for PHP 8. Maintained by Bibliopolis.

v19.1.1(2y ago)0146↓50%(Apache-2.0 and MIT)PHP

Since Aug 2Pushed 1y ago1 watchersCompare

[ Source](https://github.com/mattybaer/ebay-sdk-php)[ Packagist](https://packagist.org/packages/mattybaer/ebay-sdk-php)[ Docs](https://www.bibliopolis.com/)[ RSS](/packages/mattybaer-ebay-sdk-php/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (6)Versions (41)Used By (0)

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

[](#ebay-sdk-php)

**This repository is now actively maintained by Bibliopolis.**

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](http://devbay.net/sdk/guides/getting-started/installation.html) and by following the [Basic Usage Guide](http://devbay.net/sdk/guides/getting-started/basic-usage.html).

This is a project that has been developed by [David T. Sadler](http://twitter.com/davidtsadler). Bibliopolis has forked the code and will keep up to date. It is in no way endorsed, sponsored or maintained by eBay.

Plans
-----

[](#plans)

- Keep up to date with latest PHP version. Now Supports PHP 8.
- Add latest features required to be an eBay Developer (as of now that is the Notification API and changes to various APIs)

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

[](#requirements)

- PHP 7.3 to 8+ 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](http://devbay.net/sdk/guides/getting-started/installation.html) 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 mattybaer/ebay-sdk-php

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

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

Example
-------

[](#example)

### Get public key

[](#get-public-key)

```
