diff --git a/composer.json b/composer.json index c117f278998346e6c8e7d15d797c68d279683f9d..70725412420ac5783610ae329717d203ab9d508e 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,6 @@ }, "require-dev": { "adlawson/vfs": "~0.12.1", - "camspiers/json-pretty": "~1.0.2", "php-http/curl-client": "~1.7.0", "woohoolabs/yang": "2.3.2", "codeception/codeception": "^4.2", diff --git a/composer.lock b/composer.lock index 38dd47590838bba9c08f4a8c7ce1f3e8eb9daaf8..d9dc62379353e73a2e3fd1a36e57e72ef5a315a8 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "4b87251e3dbe4f1e9674d2cab3ebfe02", + "content-hash": "4b5b02516381975e2210afd87a34a165", "packages": [ { "name": "algo26-matthias/idna-convert", @@ -4402,47 +4402,6 @@ }, "time": "2021-10-12T13:05:09+00:00" }, - { - "name": "camspiers/json-pretty", - "version": "1.0.2", - "source": { - "type": "git", - "url": "https://github.com/camspiers/json-pretty.git", - "reference": "17be37cb83af8014658da48fa0012604179039a7" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/camspiers/json-pretty/zipball/17be37cb83af8014658da48fa0012604179039a7", - "reference": "17be37cb83af8014658da48fa0012604179039a7", - "shasum": "" - }, - "require-dev": { - "phpunit/phpunit": "~4.0" - }, - "type": "library", - "autoload": { - "psr-0": { - "Camspiers": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Cam Spiers", - "email": "cameron@heyday.co.nz" - } - ], - "description": "Provides support for json pretty printing", - "support": { - "issues": "https://github.com/camspiers/json-pretty/issues", - "source": "https://github.com/camspiers/json-pretty/tree/master" - }, - "abandoned": true, - "time": "2016-02-06T01:25:58+00:00" - }, { "name": "clue/stream-filter", "version": "v1.6.0", diff --git a/tests/_support/Helper/Jsonapi.php b/tests/_support/Helper/Jsonapi.php index e435cad1c7259b3502c9e25f46ab8fe9a41cd56b..93750d979c5a9078bb993f9ddb0b833b792d4624 100644 --- a/tests/_support/Helper/Jsonapi.php +++ b/tests/_support/Helper/Jsonapi.php @@ -203,8 +203,12 @@ class Jsonapi extends \Codeception\Module } } - $jsonPretty = new \Camspiers\JsonPretty\JsonPretty(); - $json = $jsonPretty->prettify($jsonBody, JSON_UNESCAPED_SLASHES, ' '); + $json = json_encode($jsonBody, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES); + + // This converts the default indentation of 4 spaces to 2 spaces + $json = preg_replace_callback('/^( +)(?=\S)/m', function ($match) { + return str_pad('', strlen($match[1]) / 2, ' '); + }, $json); $dirname = codecept_output_dir() . 'json-for-slate/'; if (!file_exists($dirname)) {