diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index a450a4f..0000000 --- a/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: php -php: - - 5.3 - - 5.4 - - 5.5 - - 5.6 -sudo: false -# download test suite and run tests... submodule? meta testing project with -# all of the reference implementations? -script: - - git clone https://github.com/json-ld/json-ld.org.git _json-ld.org - - phpunit --group json-ld.org test.php -d ./_json-ld.org/test-suite - #- git clone https://github.com/json-ld/normalization.git _normalization - #- phpunit --group normalization test.php -d ./_normalization/tests -notifications: - email: - on_success: change - on_failure: change diff --git a/README.md b/README.md index 5853c94..28f4594 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,6 @@ 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 - Introduction ------------ @@ -152,19 +148,12 @@ $compacted = jsonld_compact($foo, 'http://schema.org', array( 'documentLoader' => 'cache_load')); ``` -Commercial Support ------------------- - -Commercial support for this library is available upon request from -[Digital Bazaar][]: support@digitalbazaar.com - Source ------ -The source code for the PHP implementation of the JSON-LD API -is available at: +The source code for the PHP implementation of the JSON-LD API is available at: -http://github.com/digitalbazaar/php-json-ld +https://git.friendi.ca/friendica/php-json-ld Tests ----- @@ -184,7 +173,6 @@ containing the tests: phpunit --group json-ld.org test.php -d {PATH_TO_JSON_LD_ORG/test-suite} phpunit --group normalization test.php -d {PATH_TO_NORMALIZATION/tests} -[Digital Bazaar]: http://digitalbazaar.com/ [JSON-LD]: http://json-ld.org/ [Microdata]: http://www.w3.org/TR/microdata/ [Microformats]: http://microformats.org/ diff --git a/composer.json b/composer.json index cc985b2..63195ee 100644 --- a/composer.json +++ b/composer.json @@ -1,29 +1,33 @@ { - "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/" + "name": "friendica/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://git.friendi.ca/friendica/php-json-ld", + "license": "BSD-3-Clause", + "authors": [ + { + "name": "Digital Bazaar, Inc.", + "email": "support@digitalbazaar.com", + "url": "http://digitalbazaar.com/" + }, + { + "name": "Friendica Team", + "url": "https://friendi.ca/" + } + ], + "require": { + "php": ">=5.3.0", + "ext-json": "*" + }, + "autoload": { + "files": ["jsonld.php"] } - ], - "require": { - "php": ">=5.3.0", - "ext-json": "*" - }, - "autoload": { - "files": [ "jsonld.php" ] - } }