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
Copy file name to clipboardExpand all lines: README.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ There is an example for this kind of statements in the file examples/select.php.
52
52
To use the PHP client, you must include the file autoloader.php from the main directory.
53
53
The autoloader will care about loading additionally required classes on the fly. The autoloader can be nested with other autoloaders.
54
54
55
-
The ArangoDB PHP client is an API that allows you to send and retrieve documents from ArangoDB from out of your PHP application. The client library itself is written in PHP and has no further dependencies but just plain PHP 5.5 (or higher).
55
+
The ArangoDB PHP client is an API that allows you to send and retrieve documents from ArangoDB from out of your PHP application. The client library itself is written in PHP and has no further dependencies but just plain PHP 5.6 (or higher).
56
56
57
57
The client library provides document and collection classes you can use to work with documents and collections in an OO fashion. When exchanging document data with the server, the library internally will use the [HTTP REST interface of ArangoDB](https://docs.arangodb.com/HttpApi/index.html). The library user does not have to care about this fact as all the details of the REST interface are abstracted by the client library.
58
58
@@ -65,7 +65,13 @@ The client library provides document and collection classes you can use to work
65
65
66
66
* ArangoDB database server version 3.0 or higher. Detailed info [here](https://github.com/arangodb/arangodb-php/wiki/Important-versioning-information-on-ArangoDB-PHP#arangodb-php-client-to-arangodb-server-interoperability-matrix)
67
67
68
-
* PHP version 5.5 or higher (Travis-tested with PHP 5.5, 5.6, 7.0, 7.1 and hhvm)
68
+
* PHP version 5.6 or higher (Travis-tested with PHP 5.6, 7.0, 7.1 and hhvm)
69
+
70
+
Note on PHP version support:
71
+
72
+
This driver will cease to support old PHP versions as soon as they have reached end-of-life status. Support will be removed with the next minor or patch version of the driver to be released.
73
+
74
+
In general, it is recommended to always use the latest PHP versions (currently those in the PHP 7 line) in order to take advantage of all the improvements (especially in performance).
69
75
70
76
<br>
71
77
@@ -74,7 +80,7 @@ The client library provides document and collection classes you can use to work
74
80
<aname="installing"></a>
75
81
## Installing the PHP client
76
82
77
-
To get started you need PHP 5.5 or higher plus an ArangoDB server running on any host that you can access.
83
+
To get started you need PHP 5.6 or higher plus an ArangoDB server running on any host that you can access.
78
84
79
85
There are two alternative ways to get the ArangoDB PHP client:
0 commit comments