php-json-ld/README.md

141 lines
5.1 KiB
Markdown
Raw Normal View History

2014-12-05 22:17:16 +01:00
php-json-ld
===========
[![Build Status][travis-ci-png]][travis-ci-site]
[travis-ci-png]: https://travis-ci.org/digitalbazaar/php-json-ld.png?branch=master
[travis-ci-site]: https://travis-ci.org/digitalbazaar/php-json-ld
2011-08-01 21:30:41 +02:00
Introduction
------------
This library is an implementation of the [JSON-LD][] specification in [PHP][].
JSON, as specified in [RFC7159][], is a simple language for representing
2011-08-01 21:30:41 +02:00
objects on the Web. Linked Data is a way of describing content across
different documents or Web sites. Web resources are described using
IRIs, and typically are dereferencable entities that may be used to find
more information, creating a "Web of Knowledge". [JSON-LD][] is intended
to be a simple publishing method for expressing not only Linked Data in
2011-08-01 21:30:41 +02:00
JSON, but for adding semantics to existing JSON.
JSON-LD is designed as a light-weight syntax that can be used to express
Linked Data. It is primarily intended to be a way to express Linked Data
in JavaScript and other Web-based programming environments. It is also
2011-08-01 21:30:41 +02:00
useful when building interoperable Web Services and when storing Linked
Data in JSON-based document storage engines. It is practical and
designed to be as simple as possible, utilizing the large number of JSON
parsers and existing code that is in use today. It is designed to be
able to express key-value pairs, RDF data, [RDFa][] data,
[Microformats][] data, and [Microdata][]. That is, it supports every
major Web-based structured data model in use today.
2011-08-01 21:30:41 +02:00
The syntax does not require many applications to change their JSON, but
easily add meaning by adding context in a way that is either in-band or
out-of-band. The syntax is designed to not disturb already deployed
systems running on JSON, but provide a smooth migration path from JSON
to JSON with added semantics. Finally, the format is intended to be fast
to parse, fast to generate, stream-based and document-based processing
compatible, and require a very small memory footprint in order to operate.
2013-09-16 20:14:35 +02:00
## Quick Examples
```php
$doc = (object)array(
"http://schema.org/name" => "Manu Sporny",
2014-07-08 18:51:12 +02:00
"http://schema.org/url" => (object)array("@id" => "http://manu.sporny.org/"),
"http://schema.org/image" => (object)array("@id" => "http://manu.sporny.org/images/manu.png")
);
2013-09-16 20:14:35 +02:00
$context = (object)array(
"name" => "http://schema.org/name",
2014-07-08 18:51:12 +02:00
"homepage" => (object)array("@id" => "http://schema.org/url", "@type" => "@id"),
"image" => (object)array("@id" => "http://schema.org/image", "@type" => "@id")
);
2013-09-16 20:14:35 +02:00
// compact a document according to a particular context
// see: http://json-ld.org/spec/latest/json-ld/#compacted-document-form
$compacted = jsonld_compact($doc, $context);
echo json_encode($compacted, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
/* Output:
{
"@context": {...},
"image": "http://manu.sporny.org/images/manu.png",
"homepage": "http://manu.sporny.org/",
"name": "Manu Sporny"
}
*/
// compact using URLs
jsonld_compact('http://example.org/doc', 'http://example.org/context');
// expand a document, removing its context
// see: http://json-ld.org/spec/latest/json-ld/#expanded-document-form
$expanded = jsonld_expand($compacted) {
echo json_encode($expanded, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
/* Output:
{
"http://schema.org/image": [{"@id": "http://manu.sporny.org/images/manu.png"}],
"http://schema.org/name": [{"@value": "Manu Sporny"}],
"http://schema.org/url": [{"@id": "http://manu.sporny.org/"}]
}
*/
// expand using URLs
jsonld_expand('http://example.org/doc');
// flatten a document
// see: http://json-ld.org/spec/latest/json-ld/#flattened-document-form
$flattened = jsonld_flatten($doc);
// all deep-level trees flattened to the top-level
// frame a document
// see: http://json-ld.org/spec/latest/json-ld-framing/#introduction
$framed = jsonld_frame($doc, $frame);
// document transformed into a particular tree structure per the given frame
// normalize a document
$normalized = jsonld_normalize($doc, array('format' => 'application/nquads'));
// normalized is a string that is a canonical representation of the document
// that can be used for hashing
```
2011-08-01 21:30:41 +02:00
Commercial Support
------------------
2013-09-16 20:14:35 +02:00
Commercial support for this library is available upon request from
[Digital Bazaar][]: support@digitalbazaar.com
2011-08-01 21:30:41 +02:00
Source
------
2012-05-09 05:30:24 +02:00
The source code for the PHP implementation of the JSON-LD API
2011-08-06 23:41:41 +02:00
is available at:
2011-08-01 21:30:41 +02:00
http://github.com/digitalbazaar/php-json-ld
Tests
-----
2012-05-09 05:30:24 +02:00
This library includes a sample testing utility which may be used to verify
that changes to the processor maintain the correct output.
2012-05-09 05:37:23 +02:00
To run the sample tests you will need to get the test suite files by cloning
the [json-ld.org repository][json-ld.org] hosted on GitHub:
2012-04-24 19:37:43 +02:00
https://github.com/json-ld/json-ld.org
2013-09-16 19:27:49 +02:00
Then run the PHPUnit test.php application and point it at the directory
2012-05-09 05:30:24 +02:00
containing the tests.
2013-09-16 19:25:47 +02:00
phpunit test.php -d {PATH_TO_JSON_LD_ORG/test-suite}
2012-05-09 05:30:24 +02:00
[Digital Bazaar]: http://digitalbazaar.com/
2012-05-09 05:30:24 +02:00
[JSON-LD]: http://json-ld.org/
[Microdata]: http://www.w3.org/TR/microdata/
[Microformats]: http://microformats.org/
[PHP]: http://php.net
[RDFa]: http://www.w3.org/TR/rdfa-core/
[RFC7159]: http://tools.ietf.org/html/rfc7159
2012-05-09 05:30:24 +02:00
[json-ld.org]: https://github.com/json-ld/json-ld.org