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

ActiveLibrary[API Development](/categories/api)

eoc/ebay-laravel-sdk
====================

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

v1.1.7(4y ago)0681(Apache-2.0 and MIT)PHPPHP &gt;=5.5

Since Oct 7Pushed 4y ago1 watchersCompare

[ Source](https://github.com/areghunanyan/ebay-laravel-sdk)[ Packagist](https://packagist.org/packages/eoc/ebay-laravel-sdk)[ RSS](/packages/eoc-ebay-laravel-sdk/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (5)Versions (10)Used By (1)

EBAY-LARAVEL-SDK
================

[](#ebay-laravel-sdk)

**This repository is no longer actively maintained and has been archived.**

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 developed by me, \[Areg Hunanyan\]. I decided to create this project to make up for the lack of an official SDK for PHP. 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/areghunanyan/ebay-laravel-sdk/wiki) - Getting started guide and in-depth information.
- [Examples](https://github.com/areghunanyan/ebay-laravel-sdk/wiki) - 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 eoc/ebay-laravel-sdk

    ```
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)

```
