{"id":19325203,"url":"https://github.com/sapientpro/ebay-traditional-sdk-php","last_synced_at":"2026-06-18T11:31:56.273Z","repository":{"id":173637781,"uuid":"635713713","full_name":"sapientpro/ebay-traditional-sdk-php","owner":"sapientpro","description":"Ebay Traditional SDK for PHP","archived":false,"fork":false,"pushed_at":"2025-07-24T12:56:55.000Z","size":1571,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-01T13:41:16.934Z","etag":null,"topics":["ebay-api","ebay-sdk","ebay-translation-api","php","php8"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sapientpro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-03T09:48:46.000Z","updated_at":"2025-07-24T12:54:03.000Z","dependencies_parsed_at":"2023-07-20T01:00:43.976Z","dependency_job_id":null,"html_url":"https://github.com/sapientpro/ebay-traditional-sdk-php","commit_stats":null,"previous_names":["sapientpro/ebay-traditional-sdk-php"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/sapientpro/ebay-traditional-sdk-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sapientpro%2Febay-traditional-sdk-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sapientpro%2Febay-traditional-sdk-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sapientpro%2Febay-traditional-sdk-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sapientpro%2Febay-traditional-sdk-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sapientpro","download_url":"https://codeload.github.com/sapientpro/ebay-traditional-sdk-php/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sapientpro%2Febay-traditional-sdk-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34377985,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ebay-api","ebay-sdk","ebay-translation-api","php","php8"],"created_at":"2024-11-10T02:09:15.516Z","updated_at":"2026-06-18T11:31:56.265Z","avatar_url":"https://github.com/sapientpro.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ebay Traditional SDK for PHP\n\nThis is a fork of the original [dts/ebay-sdk-php](https://github.com/davidtsadler/ebay-sdk-php) by [@davidtsadler](https://github.com/davidtsadler), with support for PHP 8 and compatibility with Guzzle 7.\n\nThe original project has been officially abandoned in February 2020.\n\n---\n\nThis project enables PHP developers to use the [Traditional eBay APIs](https://developer.ebay.com/docs) in their PHP code,\nand build software using services such as [Finding](http://developer.ebay.com/Devzone/finding/Concepts/FindingAPIGuide.html),\n[Trading](http://developer.ebay.com/DevZone/guides/ebayfeatures/index.html),\n[Shopping](http://developer.ebay.com/Devzone/shopping/docs/Concepts/ShoppingAPIGuide.html), etc.\n\n## Features\n\n  - Compatible with PHP 8.\n  - Easy to install with [Composer](http://getcomposer.org/).\n  - Compliant with [PSR-1](http://www.php-fig.org/psr/psr-1/), [PSR-2](http://www.php-fig.org/psr/psr-2/), [PSR-4](http://www.php-fig.org/psr/psr-4/), and [PSR-12](http://www.php-fig.org/psr/psr-12/).\n\n## Prerequisites\n\n  - PHP 8 or higher with the following extensions:\n      - curl\n      - libxml\n  - 64 bit version 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).\n  - SSL enabled on the cURL extension so that https requests can be made.\n\n## Installation\n\nThe SDK can be installed with [Composer](http://getcomposer.org/):\n\n`composer require sapientpro/ebay-traditional-sdk`\n\n## Example usage\n\nHere is the example usage of the package. Visit wiki for more detailed documentation and examples.\n\n### Get the official eBay time\n\n```php\n\u003c?php\nuse EBay\\SDK\\Shopping\\Services\\ShoppingService;\nuse EBay\\SDK\\Shopping\\Types\\GetEbayTimeRequestType;\n\n// Create the service object.\n$service = new Services\\ShoppingService();\n\n// Create the request object.\n$request = new Types\\GeteBayTimeRequestType();\n\n// Send the request to the service operation.\n$response = $service-\u003egetEbayTime($request);\n\n// Output the result of calling the service operation.\nprintf(\"The official eBay time is: %s\\n\", $response-\u003eTimestamp-\u003eformat('H:i (\\G\\M\\T) \\o\\n l jS Y'));\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsapientpro%2Febay-traditional-sdk-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsapientpro%2Febay-traditional-sdk-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsapientpro%2Febay-traditional-sdk-php/lists"}