Skip to content

Commit b6862d1

Browse files
committed
drop support for PHP 5.3
1 parent bfc9a05 commit b6862d1

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 5.3
54
- 5.4
65
- 5.5
76
- 5.6

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,6 @@
3939

4040
<br>
4141

42-
Please take a look [here](https://github.com/arangodb/arangodb-php/wiki/Important-versioning-information-on-ArangoDB-PHP#arangodb-php-client-to-arangodb-server-interoperability-matrix) for the **ArangoDB-PHP Client** / **ArangoDB Server** interoperability matrix.
43-
44-
**[Important versioning information on ArangoDB-PHP](https://github.com/arangodb/arangodb-php/wiki/Important-versioning-information-on-ArangoDB-PHP)**
45-
46-
<br>
4742
<a name="description"></a>
4843
# Description
4944

@@ -57,7 +52,7 @@ There is an example for this kind of statements in the file examples/select.php.
5752
To use the PHP client, you must include the file autoloader.php from the main directory.
5853
The autoloader will care about loading additionally required classes on the fly. The autoloader can be nested with other autoloaders.
5954

60-
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.3 (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.4 (or higher).
6156

6257
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.
6358

@@ -70,7 +65,7 @@ The client library provides document and collection classes you can use to work
7065

7166
* ArangoDB database server version 2.5 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)
7267

73-
* PHP version 5.3 or higher (Travis-tested with PHP 5.3, 5.4, 5.5, 5.6, 7 and hhvm)
68+
* PHP version 5.4 or higher (Travis-tested with PHP 5.4, 5.5, 5.6, 7 and hhvm)
7469

7570
<br>
7671

@@ -79,7 +74,7 @@ The client library provides document and collection classes you can use to work
7974
<a name="installing"></a>
8075
## Installing the PHP client
8176

82-
To get started you need PHP 5.3 or higher plus an ArangoDB server running on any host that you can access.
77+
To get started you need PHP 5.4 or higher plus an ArangoDB server running on any host that you can access.
8378

8479
There are two alternative ways to get the ArangoDB PHP client:
8580

0 commit comments

Comments
 (0)