summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2016-12-12 10:28:54 +0100
committerRemi Collet <fedora@famillecollet.com>2016-12-12 10:28:54 +0100
commit3f1ef106ecc8f365f3c5dbe533d4cdc1c50adc33 (patch)
tree3cb31787b236c474b3facd470d069235e6fdffdc /composer.json
php-justinrainbow-json-schema4: 4.0.1 (new package)
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json62
1 files changed, 62 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..738c09d
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,62 @@
+{
+ "name": "justinrainbow/json-schema",
+ "description": "A library to validate a json schema.",
+ "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.2.0",
+ "source": {
+ "url": "https://github.com/json-schema/JSON-Schema-Test-Suite",
+ "type": "git",
+ "reference": "1.2.0"
+ }
+ }
+ }],
+ "require": {
+ "php": ">=5.3.3"
+ },
+ "require-dev": {
+ "json-schema/JSON-Schema-Test-Suite": "1.2.0",
+ "phpunit/phpunit": "^4.8.22",
+ "phpdocumentor/phpdocumentor": "~2"
+ },
+ "autoload": {
+ "psr-4": { "JsonSchema\\": "src/JsonSchema/" }
+ },
+ "autoload-dev": {
+ "psr-4": { "JsonSchema\\Tests\\": "tests/" }
+ },
+ "bin": ["bin/validate-json"],
+ "extra": {
+ "branch-alias": {
+ "dev-master": "4.0.x-dev"
+ }
+ },
+ "scripts": {
+ "test" : "vendor/bin/phpunit",
+ "coverage" : "vendor/bin/phpunit --coverage-text"
+ }
+}