Skip to content

Commit

Permalink
Merge pull request #505 from localheinz/feature/normalize
Browse files Browse the repository at this point in the history
Enhancement: Normalize composer.json
  • Loading branch information
bighappyface authored May 23, 2018
2 parents dd084db + 5da5dd3 commit 381339c
Showing 1 changed file with 39 additions and 28 deletions.
67 changes: 39 additions & 28 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"name": "justinrainbow/json-schema",
"type": "library",
"description": "A library to validate a json schema.",
"keywords": ["json", "schema"],
"keywords": [
"json",
"schema"
],
"homepage": "https://github.com/justinrainbow/json-schema",
"type": "library",
"license": "MIT",
"authors": [
{
Expand All @@ -23,44 +26,52 @@
"email": "[email protected]"
}
],
"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",
"marc-mabe/php-enum":"2.3.1"
"marc-mabe/php-enum": "2.3.1"
},
"require-dev": {
"json-schema/JSON-Schema-Test-Suite": "1.2.0",
"friendsofphp/php-cs-fixer": "^2.1",
"json-schema/JSON-Schema-Test-Suite": "1.2.0",
"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"
}
},
"autoload": {
"psr-4": {
"JsonSchema\\": "src/JsonSchema/"
}
},
"autoload-dev": {
"psr-4": {
"JsonSchema\\Tests\\": "tests/"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "json-schema/JSON-Schema-Test-Suite",
"version": "1.2.0",
"source": {
"type": "git",
"url": "https://github.com/json-schema/JSON-Schema-Test-Suite",
"reference": "1.2.0"
}
}
}
],
"bin": [
"bin/validate-json"
],
"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"
"coverage": "phpunit --coverage-text",
"style-check": "php-cs-fixer fix --dry-run --verbose --diff",
"style-fix": "php-cs-fixer fix --verbose",
"test": "phpunit",
"testOnly": "phpunit --colors --filter"
}
}

0 comments on commit 381339c

Please sign in to comment.