From 4446946faef893c0d84567d8130432437b1320bb Mon Sep 17 00:00:00 2001 From: "David T. Sadler" Date: Sat, 12 Jun 2021 22:48:01 +0100 Subject: [PATCH 1/4] Update README.md --- README.md | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index a689f2a607..518e47af5f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ 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 personal project that has been developed by me, [David T. Sadler](http://twitter.com/davidtsadler). 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. +This is a personal project that has been developed by me, [David T. Sadler](https://davidtsadler.com). 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 @@ -14,11 +14,9 @@ This is a personal project that has been developed by me, [David T. Sadler](http ## Resources - - [User Guides](http://devbay.net/sdk/guides/) - Getting started guide and in-depth information. + - [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. - - [Google Group](https://groups.google.com/forum/#!forum/ebay-sdk-php) - Join for support with the SDK. - - [@devbaydotnet](https://twitter.com/devbaydotnet) - Follow on Twitter for announcements of releases, important changes and so on. - + ## Requirements - PHP 5.5 or greater with the following extensions: @@ -74,13 +72,6 @@ $response = $service->geteBayTime($request); printf("The official eBay time is: %s\n", $response->Timestamp->format('H:i (\G\M\T) \o\n l jS Y')); ``` -## Project Goals - - - Be well maintained. - - Be [well documented](http://devbay.net/sdk/guides/). - - Be [well tested](https://github.com/davidtsadler/ebay-sdk-php/tree/master/test). - - Be well supported with [working examples](https://github.com/davidtsadler/ebay-sdk-examples). - ## License Licensed under the [Apache Public License 2.0](http://www.apache.org/licenses/LICENSE-2.0.html). From 620a0812e3a7b64596fc83b16f7f9d5300583a89 Mon Sep 17 00:00:00 2001 From: "David T. Sadler" Date: Sat, 12 Jun 2021 22:48:50 +0100 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 518e47af5f..51ef8f5746 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ **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](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 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, [David T. Sadler](https://davidtsadler.com). 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. From 744dc96f3a82b14a494ed5f8b05708c87bc297ea Mon Sep 17 00:00:00 2001 From: "David T. Sadler" Date: Sat, 12 Jun 2021 22:49:38 +0100 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 51ef8f5746..3bf57949a2 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ This is a personal project that has been developed by me, [David T. Sadler](http ## 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. +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. From f64a195119502005caa83ea4b30c479cf4ee3d12 Mon Sep 17 00:00:00 2001 From: Chris Lock Date: Mon, 1 Jul 2024 11:36:23 +0100 Subject: [PATCH 4/4] Adding promises v2 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5d5edbd98e..4b614db372 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "ext-libxml": "*", "guzzlehttp/guzzle": "^6.0 || ^7.0", "guzzlehttp/psr7": "^1.7 || ^2.0", - "guzzlehttp/promises": "^1.1" + "guzzlehttp/promises": "^1.1 || ^2.0" }, "require-dev": { "phpunit/phpunit": "^8.0 || ^9.0",