mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
Merge pull request #259 from acelaya/feature/infection
Updated to infection v0.11
This commit is contained in:
commit
2358308f4d
@ -22,6 +22,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||||||
* [#196](https://github.com/shlinkio/shlink/issues/196) Reduced anemic model in entities, defining more expressive public APIs instead.
|
* [#196](https://github.com/shlinkio/shlink/issues/196) Reduced anemic model in entities, defining more expressive public APIs instead.
|
||||||
* [#249](https://github.com/shlinkio/shlink/issues/249) Added [functional-php](https://github.com/lstrojny/functional-php) to ease collections handling.
|
* [#249](https://github.com/shlinkio/shlink/issues/249) Added [functional-php](https://github.com/lstrojny/functional-php) to ease collections handling.
|
||||||
* [#253](https://github.com/shlinkio/shlink/issues/253) Increased `user_agent` column length in `visits` table to 512.
|
* [#253](https://github.com/shlinkio/shlink/issues/253) Increased `user_agent` column length in `visits` table to 512.
|
||||||
|
* [#256](https://github.com/shlinkio/shlink/issues/256) Updated to Infection v0.11.
|
||||||
|
|
||||||
#### Deprecated
|
#### Deprecated
|
||||||
|
|
||||||
|
@ -48,7 +48,7 @@
|
|||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"filp/whoops": "^2.0",
|
"filp/whoops": "^2.0",
|
||||||
"infection/infection": "^0.9.0",
|
"infection/infection": "^0.11.0",
|
||||||
"phpstan/phpstan": "^0.10.0",
|
"phpstan/phpstan": "^0.10.0",
|
||||||
"phpunit/phpcov": "^5.0",
|
"phpunit/phpcov": "^5.0",
|
||||||
"phpunit/phpunit": "^7.3",
|
"phpunit/phpunit": "^7.3",
|
||||||
|
@ -2,8 +2,7 @@
|
|||||||
"source": {
|
"source": {
|
||||||
"directories": [
|
"directories": [
|
||||||
"module/*/src"
|
"module/*/src"
|
||||||
],
|
]
|
||||||
"excludes": []
|
|
||||||
},
|
},
|
||||||
"timeout": 10,
|
"timeout": 10,
|
||||||
"logs": {
|
"logs": {
|
||||||
@ -17,6 +16,7 @@
|
|||||||
},
|
},
|
||||||
"mutators": {
|
"mutators": {
|
||||||
"@default": true,
|
"@default": true,
|
||||||
"IdenticalEqual": false
|
"IdenticalEqual": false,
|
||||||
|
"NotIdenticalNotEqual": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user