-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Easy Coding Standard
- Loading branch information
Showing
6 changed files
with
127 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,4 @@ appveyor.yml | |
|
||
vendor/ | ||
composer.lock | ||
var/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,23 @@ | ||
# 📰 Bolt News Widget | ||
|
||
A simple Widget Extension to display the latest Bolt news on the dashboard. | ||
Installation: | ||
|
||
```bash | ||
composer require bolt/newswidget | ||
``` | ||
|
||
|
||
## Running PHPStan and Easy Codings Standard | ||
|
||
First, make sure dependencies are installed: | ||
|
||
``` | ||
COMPOSER_MEMORY_LIMIT=-1 composer update | ||
``` | ||
|
||
And then run ECS: | ||
|
||
``` | ||
vendor/bin/ecs check src | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,12 @@ | |
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.1.3" | ||
}, | ||
"require-dev": { | ||
"bolt/core": "^4.0.0" | ||
"bolt/core": "^4.0.0", | ||
"symplify/easy-coding-standard": "^6.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
imports: | ||
- { resource: 'vendor/symplify/easy-coding-standard/config/set/clean-code.yaml' } | ||
- { resource: 'vendor/symplify/easy-coding-standard/config/set/common.yaml' } | ||
- { resource: 'vendor/symplify/easy-coding-standard/config/set/php70.yaml' } | ||
- { resource: 'vendor/symplify/easy-coding-standard/config/set/php71.yaml' } | ||
- { resource: 'vendor/symplify/easy-coding-standard/config/set/psr2.yaml' } | ||
- { resource: 'vendor/symplify/easy-coding-standard/config/set/psr12.yaml' } | ||
- { resource: 'vendor/symplify/easy-coding-standard/config/set/symfony.yaml' } | ||
- { resource: 'vendor/symplify/easy-coding-standard/config/set/symfony-risky.yaml' } | ||
|
||
services: | ||
# most of these services are taken from symplify.yml | ||
# see https://github.com/Symplify/Symplify/blob/master/ecs.yml | ||
|
||
# PHP 5.5 | ||
Symplify\CodingStandard\Fixer\Php\ClassStringToClassConstantFixer: ~ | ||
|
||
# Control Structures | ||
Symplify\CodingStandard\Fixer\Property\ArrayPropertyDefaultValueFixer: ~ | ||
Symplify\CodingStandard\Fixer\ArrayNotation\StandaloneLineInMultilineArrayFixer: ~ | ||
Symplify\CodingStandard\Fixer\ControlStructure\RequireFollowedByAbsolutePathFixer: ~ | ||
|
||
# Spaces | ||
Symplify\CodingStandard\Fixer\Strict\BlankLineAfterStrictTypesFixer: ~ | ||
|
||
# Comments | ||
Symplify\CodingStandard\Fixer\Commenting\RemoveSuperfluousDocBlockWhitespaceFixer: ~ | ||
|
||
# Naming | ||
PhpCsFixer\Fixer\PhpUnit\PhpUnitMethodCasingFixer: ~ | ||
|
||
# Debug | ||
Symplify\CodingStandard\Sniffs\Debug\DebugFunctionCallSniff: ~ | ||
Symplify\CodingStandard\Sniffs\Debug\CommentedOutCodeSniff: ~ | ||
|
||
# final classes | ||
PhpCsFixer\Fixer\ClassNotation\FinalInternalClassFixer: ~ | ||
|
||
# multibyte | ||
PhpCsFixer\Fixer\Alias\MbStrFunctionsFixer: ~ | ||
|
||
# psr | ||
PhpCsFixer\Fixer\Basic\Psr0Fixer: ~ | ||
PhpCsFixer\Fixer\Basic\Psr4Fixer: ~ | ||
|
||
PhpCsFixer\Fixer\CastNotation\LowercaseCastFixer: ~ | ||
PhpCsFixer\Fixer\CastNotation\ShortScalarCastFixer: ~ | ||
PhpCsFixer\Fixer\PhpTag\BlankLineAfterOpeningTagFixer: ~ | ||
PhpCsFixer\Fixer\Import\NoLeadingImportSlashFixer: ~ | ||
PhpCsFixer\Fixer\Import\OrderedImportsFixer: | ||
importsOrder: | ||
- 'class' | ||
- 'const' | ||
- 'function' | ||
PhpCsFixer\Fixer\LanguageConstruct\DeclareEqualNormalizeFixer: | ||
space: 'none' | ||
PhpCsFixer\Fixer\Operator\NewWithBracesFixer: ~ | ||
PhpCsFixer\Fixer\Basic\BracesFixer: | ||
'allow_single_line_closure': false | ||
'position_after_functions_and_oop_constructs': 'next' | ||
'position_after_control_structures': 'same' | ||
'position_after_anonymous_constructs': 'same' | ||
|
||
PhpCsFixer\Fixer\ClassNotation\NoBlankLinesAfterClassOpeningFixer: ~ | ||
PhpCsFixer\Fixer\ClassNotation\VisibilityRequiredFixer: | ||
elements: | ||
- 'const' | ||
- 'method' | ||
- 'property' | ||
PhpCsFixer\Fixer\Operator\TernaryOperatorSpacesFixer: ~ | ||
PhpCsFixer\Fixer\FunctionNotation\ReturnTypeDeclarationFixer: ~ | ||
PhpCsFixer\Fixer\Whitespace\NoTrailingWhitespaceFixer: ~ | ||
|
||
PhpCsFixer\Fixer\Semicolon\NoSinglelineWhitespaceBeforeSemicolonsFixer: ~ | ||
PhpCsFixer\Fixer\ArrayNotation\NoWhitespaceBeforeCommaInArrayFixer: ~ | ||
PhpCsFixer\Fixer\ArrayNotation\WhitespaceAfterCommaInArrayFixer: ~ | ||
|
||
#remove useless phpdoc | ||
PhpCsFixer\Fixer\FunctionNotation\PhpdocToReturnTypeFixer: ~ | ||
PhpCsFixer\Fixer\Import\FullyQualifiedStrictTypesFixer: ~ | ||
PhpCsFixer\Fixer\Phpdoc\NoSuperfluousPhpdocTagsFixer: ~ | ||
|
||
#please yoda no | ||
SlevomatCodingStandard\Sniffs\ControlStructures\DisallowYodaComparisonSniff: ~ | ||
|
||
parameters: | ||
cache_directory: var/cache/ecs | ||
skip: | ||
PhpCsFixer\Fixer\ClassNotation\ClassAttributesSeparationFixer: ~ | ||
PhpCsFixer\Fixer\ClassNotation\OrderedClassElementsFixer: ~ | ||
PhpCsFixer\Fixer\ControlStructure\YodaStyleFixer: ~ | ||
PhpCsFixer\Fixer\Operator\ConcatSpaceFixer: ~ | ||
PhpCsFixer\Fixer\Operator\IncrementStyleFixer: ~ | ||
PhpCsFixer\Fixer\Operator\UnaryOperatorSpacesFixer: ~ | ||
PhpCsFixer\Fixer\Phpdoc\PhpdocAnnotationWithoutDotFixer: ~ | ||
PhpCsFixer\Fixer\Phpdoc\PhpdocSummaryFixer: ~ | ||
PhpCsFixer\Fixer\Whitespace\BlankLineBeforeStatementFixer: ~ | ||
SlevomatCodingStandard\Sniffs\TypeHints\TypeHintDeclarationSniff: ~ | ||
Symplify\CodingStandard\Sniffs\Debug\CommentedOutCodeSniff: ~ #to be removed before beta release | ||
Symplify\CodingStandard\Sniffs\Debug\DebugFunctionCallSniff: ~ #to be removed before beta release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ public function initialize(): void | |
{ | ||
$this->widgets->registerWidget(new NewsWidget()); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters