Skip to content

Commit

Permalink
Updates CS rules and update deps (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
SmetDenis authored Oct 14, 2023
1 parent 02283bc commit d287cac
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,32 +36,32 @@
"php" : "^8.1",

"vimeo/psalm" : ">=5.15.0",
"phpmd/phpmd" : ">=2.13.0",
"phpmd/phpmd" : ">=2.14.1",
"phan/phan" : ">=5.4.2",
"povils/phpmnd" : ">=3.2.0",

"phpstan/phpstan" : ">=1.10.33",
"phpstan/phpstan" : ">=1.10.38",
"phpstan/phpstan-strict-rules" : ">=1.5.1",

"squizlabs/php_codesniffer" : ">=3.7.2",

"phpmetrics/phpmetrics" : ">=2.8.2",
"pdepend/pdepend" : ">=2.14.0",
"pdepend/pdepend" : ">=2.15.1",

"symfony/yaml" : ">=4.4.16",
"symfony/console" : ">=4.4.16",
"symfony/finder" : ">=4.4.16",
"nikic/php-parser" : ">=4.17.1",

"friendsofphp/php-cs-fixer" : ">=3.26.1",
"friendsofphp/php-cs-fixer" : ">=3.35.1",
"kubawerlos/php-cs-fixer-custom-fixers" : ">=3.16.2",

"jbzoo/data" : "^7.1"
},

"require-dev" : {
"jbzoo/phpunit" : "^7.0",
"jbzoo/utils" : "^7.0",
"jbzoo/utils" : "^7.1.1",
"symfony/var-dumper" : ">=4.4.16"
},

Expand Down
2 changes: 1 addition & 1 deletion src/Makefiles/01_defines.Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ JBZOO_COMPOSER_UPDATE_FLAGS ?= --with-all-dependencies
ifeq ($(strip $(PHP_BIN)),php)
COMPOSER_BIN = composer
else
COMPOSER_BIN = $(PHP_BIN) $(shell which composer)
COMPOSER_BIN = $(shell which composer)
endif


Expand Down
2 changes: 1 addition & 1 deletion src/PhpCsFixer/PhpCsFixerCodingStandard.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ final class PhpCsFixerCodingStandard

'single_space_around_construct' => true,
'control_structure_braces' => true,
'curly_braces_position' => true,
'braces_position' => true,
'control_structure_continuation_position' => true,
'declare_parentheses' => true,
'statement_indentation' => true,
Expand Down

0 comments on commit d287cac

Please sign in to comment.