-
Notifications
You must be signed in to change notification settings - Fork 1
Feat/nftb 143 update cs fixer #1
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
Feat/nftb 143 update cs fixer #1
Conversation
composer.json
Outdated
@@ -4,7 +4,8 @@ | |||
"license": "MIT", | |||
"description": "Worldia Coding Standards", | |||
"require": { | |||
"friendsofphp/php-cs-fixer": "^3.6" | |||
"friendsofphp/php-cs-fixer": "^3.6", | |||
"ext-json": "*" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reason for this addition is php-cs-fixer :
composer why ext-json
Package "ext-json *" found in version "8.3.12".
worldia/coding-standards dev-master requires ext-json (*)
friendsofphp/php-cs-fixer v3.75.0 requires ext-json (*)
@@ -4,6 +4,7 @@ | |||
"license": "MIT", | |||
"description": "Worldia Coding Standards", | |||
"require": { | |||
"ext-json": "*", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reason to add this is because of php-cs-fixer :
composer why ext-json
Package "ext-json *" found in version "8.3.12".
worldia/coding-standards dev-master requires ext-json (*)
friendsofphp/php-cs-fixer v3.75.0 requires ext-json (*)
Didn't you want to also add the header comment rule ? |
The rules is already present in the factory coding-standards/src/Factory.php Line 28 in 6c4656a
Unfortunately, it won't be personalized based on the folder your are on. I think https://github.com/easy-coding-standard/easy-coding-standard may be able to do it. To note, the rule is disabled in integrated |
No description provided.