diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-04-29 08:44:04 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-04-29 08:44:04 +0200 |
commit | 1e0268e1eb2399dc0e69eda1d06d5d3a5d0b4bcf (patch) | |
tree | 04b102db5289e9f1158291a50f8935c1eb731332 /composer.json | |
parent | 83d3b4fff1c951d0bb0abd07b3874851464baabb (diff) |
v2.0.1
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..2c92cc1 --- /dev/null +++ b/composer.json @@ -0,0 +1,59 @@ +{ + "name": "justinrainbow/json-schema", + "description": "A library to validate a json schema.", + "version": "2.0.1", + "keywords": ["json", "schema"], + "homepage": "https://github.com/justinrainbow/json-schema", + "type": "library", + "license": "MIT", + "authors": [ + { + "name": "Bruno Prieto Reis", + "email": "bruno.p.reis@gmail.com" + }, + { + "name": "Justin Rainbow", + "email": "justin.rainbow@gmail.com" + }, + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + }, + { + "name": "Robert Schönthal", + "email": "seroscho@googlemail.com" + } + ], + "repositories": [{ + "type": "package", + "package": { + "name": "json-schema/JSON-Schema-Test-Suite", + "version": "1.1.0", + "source": { + "url": "https://github.com/json-schema/JSON-Schema-Test-Suite", + "type": "git", + "reference": "1.1.0" + } + } + }], + "require": { + "php": ">=5.3.3" + }, + "require-dev": { + "json-schema/JSON-Schema-Test-Suite": "1.1.0", + "phpunit/phpunit": "^4.8.22", + "phpdocumentor/phpdocumentor": "~2" + }, + "autoload": { + "psr-4": { "JsonSchema\\": "src/JsonSchema/" } + }, + "autoload-dev": { + "psr-4": { "JsonSchema\\Tests\\": "tests/JsonSchema/Tests/" } + }, + "bin": ["bin/validate-json"], + "extra": { + "branch-alias": { + "dev-master": "2.0.x-dev" + } + } +} |