From 8e2fc45c2bd4564bc1d1e604751519d5b44266d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 28 Jan 2022 18:33:06 +0100 Subject: [PATCH] Enhancement: Require ergebnis/json-pointer --- CHANGELOG.md | 5 ++++ composer.json | 1 + composer.lock | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 76 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dea7178e..104dbe5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`2.0.0...main`][2.0.0...main]. +### Changed + +- Required [`ergebnis/json-pointer`](https://github.com/ergebnis/json-pointer) ([#195]), by [@localheinz] + ## [`2.0.0`][2.0.0] For a full diff see [`1.0.0...2.0.0`][1.0.0...2.0.0]. @@ -66,5 +70,6 @@ For a full diff see [`dcd4cfb...1.0.0`][dcd4cfb...1.0.0]. [#167]: https://github.com/ergebnis/json-schema-validator/pull/167 [#169]: https://github.com/ergebnis/json-schema-validator/pull/169 [#172]: https://github.com/ergebnis/json-schema-validator/pull/172 +[#195]: https://github.com/ergebnis/json-schema-validator/pull/195 [@localheinz]: https://github.com/localheinz diff --git a/composer.json b/composer.json index 7502f61e..a67c916b 100644 --- a/composer.json +++ b/composer.json @@ -22,6 +22,7 @@ "require": { "php": "^7.4 || ^8.0", "ext-json": "*", + "ergebnis/json-pointer": "^1.0.0", "justinrainbow/json-schema": "^5.2.10" }, "require-dev": { diff --git a/composer.lock b/composer.lock index 18895d29..11d37cfb 100644 --- a/composer.lock +++ b/composer.lock @@ -4,8 +4,77 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "fa4d974d7fa69c1516695ccc1e118fe1", + "content-hash": "681e8b855230c2393e21a8a11c8bf507", "packages": [ + { + "name": "ergebnis/json-pointer", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/ergebnis/json-pointer.git", + "reference": "4eedd89b19cbd8a7557543bb263a37b6ec579786" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ergebnis/json-pointer/zipball/4eedd89b19cbd8a7557543bb263a37b6ec579786", + "reference": "4eedd89b19cbd8a7557543bb263a37b6ec579786", + "shasum": "" + }, + "require": { + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "ergebnis/composer-normalize": "^2.23.0", + "ergebnis/data-provider": "^1.1.0", + "ergebnis/license": "^1.2.0", + "ergebnis/php-cs-fixer-config": "^4.0.0", + "fakerphp/faker": "^1.18.0", + "infection/infection": "~0.26.4", + "phpunit/phpunit": "^9.5.13", + "psalm/plugin-phpunit": "~0.16.1", + "vimeo/psalm": "^4.19" + }, + "type": "library", + "extra": { + "composer-normalize": { + "indent-size": 2, + "indent-style": "space" + } + }, + "autoload": { + "psr-4": { + "Ergebnis\\Json\\Pointer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Andreas Möller", + "email": "am@localheinz.com" + } + ], + "description": "Provides JSON pointer as a value object.", + "homepage": "https://github.com/ergebnis/json-pointer", + "keywords": [ + "RFC6901", + "json", + "pointer" + ], + "support": { + "issues": "https://github.com/ergebnis/json-pointer/issues", + "source": "https://github.com/ergebnis/json-pointer" + }, + "funding": [ + { + "url": "https://github.com/localheinz", + "type": "github" + } + ], + "time": "2022-01-28T17:09:30+00:00" + }, { "name": "justinrainbow/json-schema", "version": "5.2.11",