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
JSONPath for PHP 7.1+ 
2
2
=============
3
3
4
4
This is a [JSONPath](http://goessner.net/articles/JsonPath/) implementation for PHP based on Stefan Goessner's JSONPath script.
@@ -15,13 +15,18 @@ This project aims to be a clean and simple implementation with the following goa
15
15
Installation
16
16
---
17
17
18
-
**PHP 7.2+**
18
+
**PHP 7.1+**
19
19
```bash
20
20
composer require softcreatr/jsonpath
21
21
```
22
-
**PHP < 7.2**
22
+
**PHP < 7.1**
23
23
24
-
Support for PHP < 7.2 has been completely dropped. A legacy branch is maintained in the original repository in php-5.x and can be composer-installed as follows: `"flow/jsonpath": "dev-php-5.x"`
24
+
Support for PHP < 7.1 has been dropped. However, legacy branches exist for PHP 5.6 and 7.0 and can be composer-installed as follows:
25
+
26
+
* PHP 7.0: `"flow/jsonpath": "dev-php-70"`
27
+
* PHP 5.6: `"flow/jsonpath": "dev-php-56"`
28
+
29
+
🔻 Please note, that these legacy branches (based on JSONPath 0.6.2) are protected. There are no intentions to make any updates here. Please consider upgrading to PHP 7.2 or newer.
0 commit comments