forked from friendica/php-json-ld
Friendica fork of the php-json-ld repository
- Removed mentions of Travis - Removed mentions of Digitalbazaar commercial support
This commit is contained in:
parent
38b07bbe59
commit
56b01d779d
18
.travis.yml
18
.travis.yml
|
@ -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
|
16
README.md
16
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/
|
||||
|
|
|
@ -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" ]
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue