diff --git a/composer.json b/composer.json index 06ff379..8a95b0c 100644 --- a/composer.json +++ b/composer.json @@ -1,11 +1,15 @@ { - "name": "helmich/phpunit-json-assert", + "name": "sidz/phpunit-json-assert", "description": "PHPUnit assertions for JSON documents", "license": "MIT", "authors": [ { "name": "Martin Helmich", "email": "m.helmich@mittwald.de" + }, + { + "name": "Oleg Zhulnev", + "homepage": "https://github.com/sidz" } ], "require": { @@ -21,10 +25,13 @@ }, "autoload": { "psr-4": { - "Helmich\\JsonAssert\\": "src/" + "Sid\\JsonAssert\\": "src/" } }, "autoload-dev": { + "psr-4": { + "Sid\\JsonAssert\\Tests\\": "tests/" + }, "files": [ "src/Functions.php" ] diff --git a/src/Constraint/JsonValueMatches.php b/src/Constraint/JsonValueMatches.php index 945a62f..995b884 100644 --- a/src/Constraint/JsonValueMatches.php +++ b/src/Constraint/JsonValueMatches.php @@ -1,5 +1,5 @@