Skip to content

Commit

Permalink
v0.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
SoftCreatR committed Sep 27, 2022
1 parent 5c0210b commit e04c02c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ]
#continue-on-error: ${{ matrix.php == '8.1' }}
php: [ '7.1', '7.2', '7.3', '7.4' ]
name: PHP ${{ matrix.php }} Test

steps:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
- Dropped support for PHP < 8.0
- Removed deprecated method `JSONPath->data()`

### 0.7.6
🔻 Breaking changes ahead:

- Removed support for PHP >= 8.0 (use version 0.8.0+ instead)
- Switched `roave/security-advisories` from `dev-master` to `dev-latest`

This is probably the last version for PHP 7.1 - 7.4.

### 0.7.5
- Added support for $.length
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# JSONPath for PHP
# JSONPath for PHP 7.1 - 7.4

[![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)
[![Latest Release](https://img.shields.io/packagist/v/SoftCreatR/JSONPath?color=blue&label=Latest%20Release)](https://packagist.org/packages/softcreatr/jsonpath)
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "softcreatr/jsonpath",
"description": "JSONPath implementation for parsing, searching and flattening arrays",
"version": "0.7.5",
"version": "0.7.6",
"license": "MIT",
"authors": [
{
Expand All @@ -13,20 +13,20 @@
{
"name": "Sascha Greuel",
"email": "hello@1-2.dev",
"homepage": "http://1-2.dev",
"homepage": "https://1-2.dev",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"php": ">=7.1,<8.0",
"ext-json": "*"
},
"replace": {
"flow/jsonpath": "*"
},
"require-dev": {
"phpunit/phpunit": ">=7.0",
"roave/security-advisories": "dev-master",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
Expand Down

0 comments on commit e04c02c

Please sign in to comment.