From aba9709907232025b196d1e923ca9bac68694ba8 Mon Sep 17 00:00:00 2001 From: Tpt Date: Tue, 20 Jan 2015 08:53:24 +0100 Subject: [PATCH] Adds composer.json --- composer.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..cc985b2 --- /dev/null +++ b/composer.json @@ -0,0 +1,29 @@ +{ + "name": "digitalbazaar/json-ld", + "type": "library", + "description": "A JSON-LD Processor and API implementation in PHP.", + "keywords": [ + "JSON", + "Linked Data", + "JSON-LD", + "RDF", + "Semantic Web", + "jsonld" + ], + "homepage": "https://github.com/digitalbazaar/php-json-ld", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Digital Bazaar, Inc.", + "email": "support@digitalbazaar.com", + "url": "http://digitalbazaar.com/" + } + ], + "require": { + "php": ">=5.3.0", + "ext-json": "*" + }, + "autoload": { + "files": [ "jsonld.php" ] + } +}