Skip to content

Commit

Permalink
Enhancement: Normalize composer.json (#629)
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz authored and maks-rafalko committed Feb 13, 2019
1 parent 4aeb348 commit 8d7b5f3
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 34 deletions.
75 changes: 43 additions & 32 deletions composer.json
@@ -1,12 +1,16 @@
{
"name": "infection/infection",
"description": "Infection is a Mutation Testing framework for PHP. The mutation adequacy score can be used to measure the effectiveness of a test set in terms of its ability to detect faults.",
"keywords": ["mutation testing", "mutation framework", "testing", "coverage", "unit testing", "mutant"],
"type": "library",
"description": "Infection is a Mutation Testing framework for PHP. The mutation adequacy score can be used to measure the effectiveness of a test set in terms of its ability to detect faults.",
"keywords": [
"mutation testing",
"mutation framework",
"testing",
"coverage",
"unit testing",
"mutant"
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/infection/infection/issues"
},
"authors": [
{
"name": "Maks Rafalko",
Expand All @@ -32,31 +36,6 @@
"homepage": "https://www.alexeykopytko.com"
}
],
"autoload": {
"psr-4": {
"Infection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Infection\\Tests\\": "tests/"
},
"files": [
"tests/Helpers.php",
"tests/Fixtures/Autoloaded/Reflection/rv-inside-function.php"
],
"classmap": ["tests/Fixtures/Autoloaded"]
},
"config": {
"platform": {
"php": "7.1.3"
},
"sort-packages": true
},
"conflict": {
"symfony/console": "=3.4.16 || =4.1.5",
"symfony/process": "3.4.2"
},
"require": {
"php": "^7.1.3",
"ext-dom": "*",
Expand All @@ -72,12 +51,44 @@
"symfony/console": "^3.4 || ^4.0",
"symfony/filesystem": "^3.4 || ^4.0",
"symfony/finder": "^3.4 || ^4.0",
"symfony/process": "^3.4|| ^4.0",
"symfony/process": "^3.4 || ^4.0",
"symfony/yaml": "^3.4 || ^4.0",
"webmozart/assert": "^1.3"
},
"conflict": {
"symfony/console": "=3.4.16 || =4.1.5",
"symfony/process": "3.4.2"
},
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"bin": ["bin/infection"]
"config": {
"platform": {
"php": "7.1.3"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Infection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Infection\\Tests\\": "tests/"
},
"classmap": [
"tests/Fixtures/Autoloaded"
],
"files": [
"tests/Helpers.php",
"tests/Fixtures/Autoloaded/Reflection/rv-inside-function.php"
]
},
"bin": [
"bin/infection"
],
"support": {
"issues": "https://github.com/infection/infection/issues"
}
}
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8d7b5f3

Please sign in to comment.