Skip to content

Commit 1282c40

Browse files
authored
Merge pull request #20 from swaggest/class-pointer
Add support for PHP classes in JsonPointer
2 parents dadb65f + 114edf2 commit 1282c40

File tree

5 files changed

+139
-65
lines changed

5 files changed

+139
-65
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ phar:
33

44
docker56-composer-update:
55
test -f ./composer.phar || wget https://getcomposer.org/composer.phar
6-
docker run -v $$(pwd):/code php:5.6-cli bash -c "apt-get update;apt-get install -y unzip;cd /code;php composer.phar update --prefer-source"
6+
docker run --rm -v $$(pwd):/code php:5.6-cli bash -c "apt-get update;apt-get install -y unzip;cd /code;php composer.phar update --prefer-source"
77

88
docker56-test:
9-
docker run -v $$(pwd):/code php:5.6-cli bash -c "cd /code;php vendor/bin/phpunit"
9+
docker run --rm -v $$(pwd):/code -w /code php:5.6-cli php vendor/bin/phpunit

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,12 @@ $patch->apply($original);
231231
$this->assertEquals($diff->getRearranged(), $original);
232232
```
233233

234+
## PHP Classes as JSON objects
235+
236+
Due to magical methods and other restrictions PHP classes can not be reliably mapped to/from JSON objects.
237+
There is support for objects of PHP classes in `JsonPointer` with limitations:
238+
* `null` is equal to non-existent
239+
234240
## CLI tool
235241

236242
Moved to [`swaggest/json-cli`](https://github.com/swaggest/json-cli)

composer.lock

+58-59
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)