Skip to content

Commit e04c02c

Browse files
committed
v0.7.6
1 parent 5c0210b commit e04c02c

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.github/workflows/Test.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
25-
#continue-on-error: ${{ matrix.php == '8.1' }}
24+
php: [ '7.1', '7.2', '7.3', '7.4' ]
2625
name: PHP ${{ matrix.php }} Test
2726

2827
steps:

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
- Dropped support for PHP < 8.0
77
- Removed deprecated method `JSONPath->data()`
88

9+
### 0.7.6
10+
🔻 Breaking changes ahead:
11+
12+
- Removed support for PHP >= 8.0 (use version 0.8.0+ instead)
13+
- Switched `roave/security-advisories` from `dev-master` to `dev-latest`
14+
15+
This is probably the last version for PHP 7.1 - 7.4.
916

1017
### 0.7.5
1118
- Added support for $.length

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# JSONPath for PHP
1+
# JSONPath for PHP 7.1 - 7.4
22

33
[![Build Status](https://img.shields.io/github/workflow/status/SoftCreatR/JSONPath/Test/main?label=Build%20Status)](https://github.com/SoftCreatR/JSONPath/actions?query=workflow%3ATest)
44
[![Latest Release](https://img.shields.io/packagist/v/SoftCreatR/JSONPath?color=blue&label=Latest%20Release)](https://packagist.org/packages/softcreatr/jsonpath)

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "softcreatr/jsonpath",
33
"description": "JSONPath implementation for parsing, searching and flattening arrays",
4-
"version": "0.7.5",
4+
"version": "0.7.6",
55
"license": "MIT",
66
"authors": [
77
{
@@ -13,20 +13,20 @@
1313
{
1414
"name": "Sascha Greuel",
1515
"email": "[email protected]",
16-
"homepage": "http://1-2.dev",
16+
"homepage": "https://1-2.dev",
1717
"role": "Developer"
1818
}
1919
],
2020
"require": {
21-
"php": ">=7.1",
21+
"php": ">=7.1,<8.0",
2222
"ext-json": "*"
2323
},
2424
"replace": {
2525
"flow/jsonpath": "*"
2626
},
2727
"require-dev": {
2828
"phpunit/phpunit": ">=7.0",
29-
"roave/security-advisories": "dev-master",
29+
"roave/security-advisories": "dev-latest",
3030
"squizlabs/php_codesniffer": "^3.5"
3131
},
3232
"config": {

0 commit comments

Comments
 (0)