You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 24, 2023. It is now read-only.
***JsonObject:** fix JsonObject::hasField method to return if the field has a value set ([c2eaed5](https://github.com/sphereio/commercetools-php-sdk/commit/c2eaed5)), closes [#173](https://github.com/sphereio/commercetools-php-sdk/issues/173)
8
+
9
+
### Features
10
+
11
+
***Cache:** add support for PSR-6 cache adapter ([e6cbd27](https://github.com/sphereio/commercetools-php-sdk/commit/e6cbd27)), closes [#194](https://github.com/sphereio/commercetools-php-sdk/issues/194)
12
+
***Cart:** support new cart tax modes ([f6bfeeb](https://github.com/sphereio/commercetools-php-sdk/commit/f6bfeeb)), closes [#207](https://github.com/sphereio/commercetools-php-sdk/issues/207)
13
+
***Customer:** support anonymous cart sign in mode for customer login ([e94ac48](https://github.com/sphereio/commercetools-php-sdk/commit/e94ac48)), closes [#212](https://github.com/sphereio/commercetools-php-sdk/issues/212)
***Product:** add getAllVariants helper method to product data ([006e984](https://github.com/sphereio/commercetools-php-sdk/commit/006e984)), closes [#213](https://github.com/sphereio/commercetools-php-sdk/issues/213)
17
+
***Product:** add image move to position update action ([c24839b](https://github.com/sphereio/commercetools-php-sdk/commit/c24839b)), closes [#206](https://github.com/sphereio/commercetools-php-sdk/issues/206)
18
+
***Product:** add scopedPrice and scopePriceDiscounted to ProductVariant model ([f7d25d8](https://github.com/sphereio/commercetools-php-sdk/commit/f7d25d8)), closes [#201](https://github.com/sphereio/commercetools-php-sdk/issues/201)
19
+
***Product:** add support to publish product on creation ([ee71818](https://github.com/sphereio/commercetools-php-sdk/commit/ee71818)), closes [#203](https://github.com/sphereio/commercetools-php-sdk/issues/203)
20
+
***Product:** support availableQuantity for product variant availability ([dbc4c48](https://github.com/sphereio/commercetools-php-sdk/commit/dbc4c48)), closes [#202](https://github.com/sphereio/commercetools-php-sdk/issues/202)
21
+
***Product:** support fuzzy query for product suggest ([1d59870](https://github.com/sphereio/commercetools-php-sdk/commit/1d59870)), closes [#205](https://github.com/sphereio/commercetools-php-sdk/issues/205)
22
+
***Query:** add support for multiple where query parameters ([591c926](https://github.com/sphereio/commercetools-php-sdk/commit/591c926)), closes [#196](https://github.com/sphereio/commercetools-php-sdk/issues/196)
23
+
***Request:** support reference expansion for CRUD requests ([0f29ea7](https://github.com/sphereio/commercetools-php-sdk/commit/0f29ea7)), closes [#199](https://github.com/sphereio/commercetools-php-sdk/issues/199)
Copy file name to clipboardExpand all lines: README.md
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,8 @@ The [PHP API documentation](http://sphereio.github.io/commercetools-php-sdk/docs
15
15
16
16
### Install & Integrate the SDK into your Project
17
17
18
-
The SDK requires a PHP version of 5.4 or higher with the apc(u) PHP extension for its default cache. If you provide an own Cache interface, apc(u) is not necessary.
18
+
The SDK requires a PHP version of 5.4 or higher. The SDK tries to use the APC(u) as it's default cache. If you provide an own cache interface or a [PSR-6](https://packagist.org/providers/psr/cache-implementation) compliant cache adapter, APC(u) is not necessary. The [cache/filesystem-adapter](https://packagist.org/packages/cache/filesystem-adapter) is tried to be used if no APC(u) is installed. See also client [documentation](http://sphereio.github.io/commercetools-php-sdk/docs/master/class-Commercetools.Core.Client.html).
19
+
19
20
The curl extension is recommended but not strictly necessary because the SDK is using the [Guzzle library](https://github.com/guzzle/guzzle) library, which falls back to PHP stream wrappers if curl is not available.
20
21
The intl extension is required to directly output Money objects as a String.
21
22
@@ -115,25 +116,23 @@ xcode-select --install
115
116
brew tap homebrew/dupes
116
117
brew tap homebrew/versions
117
118
brew tap homebrew/homebrew-php
118
-
brew install php55
119
-
brew install php55-intl
120
-
brew install php55-apcu
121
-
brew install php55-xdebug
119
+
brew install php56
120
+
brew install php56-intl
121
+
brew install php56-xdebug
122
122
brew install ant
123
123
# you probably also need to fix a (=any) timezone in your php.ini:
* install php 5.4+, apc(u), xdebug and ant according to their distro's package system.
131
-
* make sure the curl, intl, mbstring, apcu and openssl extensions are activated in php.ini
130
+
* install php 5.5+, xdebug and ant according to their distro's package system.
131
+
* make sure the curl, intl, mbstring and openssl extensions are activated in php.ini
132
132
133
133
### Windows preparations:
134
-
*[install php](http://windows.php.net/download/) 5.4+, i.e. extract ZIP and make add php.exe location to your PATH. Use WAMP etc. if you like, but plain PHP commandline is all you really need (you can test example code in the built-in webserver).
134
+
*[install php](http://windows.php.net/download/) 5.5+, i.e. extract ZIP and make add php.exe location to your PATH. Use WAMP etc. if you like, but plain PHP commandline is all you really need (you can test example code in the built-in webserver).
135
135
* enable the curl, intl, mbstring and openssl extenstions in php.ini
136
-
*[install apcu](http://robert-rusu.blogspot.de/2014/06/install-apcu-on-windows.html) OR a redis extension and server
137
136
* make a working ant available in the PATH
138
137
* and [install composer](https://getcomposer.org/doc/00-intro.md#installation-windows).
0 commit comments