Skip to content

Commit 087ba23

Browse files
author
Ujwal Dhakal
committed
Added cs fixer
1 parent 7e1f5f5 commit 087ba23

10 files changed

+2188
-947
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
###> Misc ###
2+
.DS_Store
3+
.idea
4+
/.vscode/
5+
/.php-cs-fixer.php
6+
/.php-cs-fixer.cache

.php-cs-fixer.dist.php

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
$finder = (new PhpCsFixer\Finder())
6+
->in([
7+
__DIR__ . '/src',
8+
]);
9+
10+
return (new PhpCsFixer\Config())
11+
->setRiskyAllowed(true)
12+
->setRules([
13+
'strict_param' => true,
14+
'array_syntax' => ['syntax' => 'short'],
15+
'concat_space' => ['spacing' => 'one'],
16+
'multiline_whitespace_before_semicolons' => ['strategy' => 'no_multi_line'],
17+
'no_superfluous_phpdoc_tags' => true,
18+
'no_trailing_whitespace_in_string' => false,
19+
'no_useless_else' => true,
20+
'no_useless_return' => true,
21+
'global_namespace_import' => [
22+
'import_classes' => true,
23+
'import_constants' => true,
24+
'import_functions' => true,
25+
],
26+
'ordered_imports' => [
27+
'sort_algorithm' => 'alpha',
28+
'imports_order' => ['class', 'function', 'const'],
29+
],
30+
'final_internal_class' => true,
31+
'return_type_declaration' => ['space_before' => 'none'],
32+
'void_return' => true,
33+
'yoda_style' => [
34+
'equal' => false,
35+
'identical' => false,
36+
],
37+
'class_definition' => ['multi_line_extends_each_single_line' => true],
38+
'heredoc_indentation' => true,
39+
'single_line_throw' => false,
40+
'class_attributes_separation' => [
41+
'elements' => [
42+
'property' => 'one',
43+
'method' => 'one',
44+
],
45+
],
46+
'php_unit_test_annotation' => ['style' => 'annotation'],
47+
'php_unit_method_casing' => ['case' => 'snake_case'],
48+
'php_unit_set_up_tear_down_visibility' => true,
49+
'php_unit_internal_class' => false,
50+
'php_unit_test_case_static_method_calls' => ['call_type' => 'self'],
51+
])
52+
->setFinder($finder)
53+
;

Readme.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,17 @@ This is just an addon for the [OpentracingBundleCore](https://github.com/auxmone
55

66
If you are using Messenger for async messages no matter how many async messages you have inside message, it will trace them by modifying your messages before it gets processed. The way it modifies them is by using leveraging the [Symfony Messenger Events](https://symfony.com/doc/current/messenger.html#messenger-events).
77

8-
## Installation
8+
## Installation
9+
- Run `composer require ujwaldhakal/symfony-opentracing-messenger`
10+
- Import bundle on your `bundles.php` with
11+
```
12+
Auxmoney\OpentracingBundle\OpentracingBundle::class => ['all' => true],
13+
Ujwaldhakal\OpentracingMessengerBundle\MessengerBundle::class => ['all' => true]
14+
```
15+
16+
- Follow the configuration from [https://github.com/auxmoney/OpentracingBundle-core](https://github.com/auxmoney/OpentracingBundle-core)
17+
18+
19+
For more info visit:
20+
21+
https://github.com/auxmoney/OpentracingBundle-core

composer.json

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"description": "Bundle that helps to trace symfony messenger's async messages",
44
"type": "symfony-bundle",
55
"require": {
6-
"php": ">=7.4",
7-
"symfony/framework-bundle": "^6.0",
6+
"php": ">=7.0",
87
"auxmoney/opentracing-bundle-jaeger": "^v1.2.1"
98
},
109
"autoload": {
@@ -18,5 +17,8 @@
1817
"name": "Ujwal Dhakal",
1918
"email": "[email protected]"
2019
}
21-
]
20+
],
21+
"require-dev": {
22+
"friendsofphp/php-cs-fixer": "v2.19.0"
23+
}
2224
}

0 commit comments

Comments
 (0)