Skip to content
This repository has been archived by the owner on Oct 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2 from wizaplace/fix-dependencies
Browse files Browse the repository at this point in the history
Add symfony/options-resolver dependency, rename namespaces and fix code style
  • Loading branch information
steevanb authored Mar 26, 2019
2 parents 1d2ca24 + d9a3eeb commit 395d47c
Show file tree
Hide file tree
Showing 8 changed files with 226 additions and 233 deletions.
61 changes: 30 additions & 31 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,32 @@
{
"name": "wizaplace/json-decoder",
"description": "Throw an exception when json_decode() fails to decode a JSON",
"type": "library",
"homepage": "https://github.com/wizaplace/json-decoder",
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpstan/phpstan": "^0.11.2",
"phpunit/phpunit": "^8.0"
},
"license": "MIT",
"authors": [
{
"name": "Wizaplace",
"email": "dev@wizaplace.com"
"name": "wizaplace/json-decoder",
"description": "Throw an exception when json_decode() fails to decode a JSON and validate decoded data.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Wizaplace",
"email": "dev@wizaplace.com"
}
],
"require": {
"php": "^7.1.3",
"ext-json": "*",
"symfony/options-resolver": "^3.0||^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpstan/phpstan": "^0.11.2",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Wizaplace\\JsonDecoder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wizaplace\\JsonDecoder\\Test\\": "tests/"
}
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.1.3",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Wizaplace\\Json\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wizaplace\\Test\\": "tests/"
}
}
}
}
Loading

0 comments on commit 395d47c

Please sign in to comment.