Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Created new Mutator for strtoupper function #535

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ccffd49
Restrict installation with broken versions of symfony/console (#523)
sanmai Oct 30, 2018
e5ece66
Created new Mutator for strtoupper function
zf2timo Oct 31, 2018
2439066
Enhancement: Enable no_superfluous_phpdoc_tags fixer (#525)
localheinz Nov 1, 2018
a5491a8
Enhancement: Fail with a better assertion message (#538)
localheinz Nov 1, 2018
b89ecc4
Enhancement: Implement UnwrapStrRepeat mutator (#539)
localheinz Nov 2, 2018
66272d0
Run project's tests in a random order for InitialTestRun process (#519)
maks-rafalko Nov 2, 2018
aaa244c
Enhancement: Implement UnwrapArrayReduce mutator (#533)
localheinz Nov 2, 2018
21e9bff
Fix: Add UnwrapStrRepeat to Unwrap mutator profile
localheinz Nov 2, 2018
b7a0540
Add test to ensure all mutators are assigned to at least one profile
maks-rafalko Nov 3, 2018
c24ebd3
Enhancement: Implement UnwrapArrayReplace mutator
localheinz Oct 31, 2018
0ba9520
Enhancement: Use generic approach
localheinz Nov 1, 2018
a6ab3a5
Merge branch '0.10'
maks-rafalko Nov 3, 2018
fed05b8
Update composer.lock after merge
maks-rafalko Nov 3, 2018
a76e43f
Enhancement: Implement UnwrapStrtolower mutator
localheinz Oct 31, 2018
2debcd3
Fix: Keep mutators in mutator profiles sorted by name (#541)
localheinz Nov 4, 2018
d389522
Enhancement: Implement UnwrapArrayIntersect mutator (#543)
localheinz Nov 4, 2018
353d53a
Enhancement: Implement UnwrapArrayMerge mutator (#542)
localheinz Nov 4, 2018
102aa26
Created new Mutator for strtoupper function
zf2timo Oct 31, 2018
b74f77f
Fixed copy and paste errors
zf2timo Nov 4, 2018
ff07af5
Merge branch 'feature/unwrap-strtoupper' of github.com:zf2timo/infect…
zf2timo Nov 4, 2018
1cf909c
Changed UnwrapStrToUpper::getParameterIndex to new interface
zf2timo Nov 4, 2018
e85f05f
Fix: Use plural for method name as it returns a generator (#546)
localheinz Nov 5, 2018
c696d27
Fix variable names in mutators (#549)
BackEndTea Nov 5, 2018
36e1894
Created new Mutator for strtoupper function
zf2timo Oct 31, 2018
528c6ba
Fixed copy and paste errors
zf2timo Nov 4, 2018
03b30e0
Changed UnwrapStrToUpper::getParameterIndex to new interface
zf2timo Nov 4, 2018
1d97992
Rebased onto upstream/master
zf2timo Nov 5, 2018
711b6ab
Merge branch 'feature/unwrap-strtoupper' of github.com:zf2timo/infect…
zf2timo Nov 5, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -10,3 +10,4 @@
/*.phar
/build/bin/infection.phar
/build/bin/infection.phar.pubkey
.phpunit.result.cache
1 change: 1 addition & 0 deletions .php_cs.dist
Expand Up @@ -51,6 +51,7 @@ return \PhpCsFixer\Config::create()
'native_function_invocation' => [
'include' => ['@compiler_optimized']
],
'no_superfluous_phpdoc_tags' => true,
'no_useless_else'=> true,
'ordered_class_elements' => true,
'ordered_imports' => true,
Expand Down
1 change: 1 addition & 0 deletions composer.json
Expand Up @@ -54,6 +54,7 @@
"sort-packages": true
},
"conflict": {
"symfony/console": "=3.4.16 || =4.1.5",
"symfony/process": "3.4.2"
},
"require": {
Expand Down