1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- {
- "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",
- "friendsofphp/php-cs-fixer": "^2.1",
- "phpunit/phpunit": "^4.8.35"
- },
- "autoload": {
- "psr-4": { "JsonSchema\\": "src/JsonSchema/" }
- },
- "autoload-dev": {
- "psr-4": { "JsonSchema\\Tests\\": "tests/" }
- },
- "bin": ["bin/validate-json"],
- "extra": {
- "branch-alias": {
- "dev-master": "5.0.x-dev"
- }
- },
- "scripts": {
- "test" : "phpunit",
- "testOnly" : "phpunit --colors --filter",
- "coverage" : "phpunit --coverage-text",
- "style-check" : "php-cs-fixer fix --dry-run --verbose --diff",
- "style-fix" : "php-cs-fixer fix --verbose"
- }
- }
|