Skip to content

Commit

Permalink
Updated dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
flavioheleno committed Jun 7, 2022
1 parent 70b45b6 commit e95e895
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ vendor/
bin/
composer.lock
.vagrant
/.php_cs.cache
/.php-cs-fixer.cache
4 changes: 2 additions & 2 deletions .php_cs → .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
->notPath('/fixtures/')
;

return \PhpCsFixer\Config::create()
$config = new \PhpCsFixer\Config();
return $config
->setRules([
'@Symfony' => true,
'@Symfony:risky' => true,
'@PHP56Migration' => true,
'@PHP56Migration:risky' => true,
'@PHP70Migration' => true,
'@PHP70Migration:risky' => true,
Expand Down
13 changes: 8 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist"
"preferred-install": "dist",
"allow-plugins": {
"infection/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down Expand Up @@ -40,12 +43,12 @@
"php-http/httplug-bundle": "For integration with Symfony"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.17",
"infection/infection": "^0.21.5 || ^0.24.0",
"friendsofphp/php-cs-fixer": "^3.8",
"infection/infection": "^0.26",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpstan/phpstan": "^0.12.58",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.5",
"psy/psysh": "^0.10.5",
"psy/psysh": "^0.11",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.3"
Expand Down

0 comments on commit e95e895

Please sign in to comment.