Skip to content

Commit

Permalink
humbug -> infection. Lock to PHPUnit 5 because concise doesn't support 6
Browse files Browse the repository at this point in the history
This transition will allow me to transition away from PHPUnit in future,
because its integration doesn't rely on PHPUnit listener.
  • Loading branch information
ostrolucky committed Jan 22, 2018
1 parent 672281a commit 9040151
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It's strictly for use in **domain of your application**. This allows it to:
Via Composer

``` bash
composer require ostrolucky/app-event-dispatcher:dev-master
composer require ostrolucky/app-event-dispatcher
```

## Requirements
Expand Down
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,18 @@
"psr-4": { "Ostrolucky\\AppEventDispatcher\\Test\\": "test" }
},
"require-dev": {
"humbug/humbug": "~1.0@dev",
"doctrine/orm": "*",
"elliotchance/concise": "^2.1",
"infection/infection": "^0.7.0",
"phpunit/phpunit": "^5",
"symfony/dependency-injection": "*",
"symfony/event-dispatcher": "*",
"symfony/workflow": "*",
"doctrine/orm": "*",
"friendsofphp/php-cs-fixer": "^2.4"
"symfony/workflow": "*"
},
"suggest": {
"symfony/dependency-injection": "To automatically attach your services to event dispatcher based on service tags"
},
"config": {
"sort-packages": true
}
}
4 changes: 2 additions & 2 deletions humbug.json.dist → infection.json.dist
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"timeout": 10,
"source": {
"directories": [
"src"
]
},
"timeout": 10,
"logs": {
"text": "humbuglog.txt"
"text": "infection-log.txt"
}
}

0 comments on commit 9040151

Please sign in to comment.