File tree Expand file tree Collapse file tree 5 files changed +43
-4
lines changed Expand file tree Collapse file tree 5 files changed +43
-4
lines changed Original file line number Diff line number Diff line change 1+ *
Original file line number Diff line number Diff line change 1+ # EditorConfig is awesome: https://EditorConfig.org
2+
3+ # top-most EditorConfig file
4+ root = true
5+
6+ [* ]
7+ charset = utf-8
8+ end_of_line = lf
9+ indent_size = 4
10+ indent_style = space
11+ insert_final_newline = true
12+ max_line_length = 120
13+ tab_width = 4
14+ trim_trailing_whitespace = true
15+
16+ [* .{js, json} ]
17+ indent_size = 2
18+ tab_width = 2
Original file line number Diff line number Diff line change 1+ # https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes
2+ # https://medium.com/@pablorsk/be-a-git-ninja-the-gitattributes-file-e58c07c9e915
3+
4+ # A list of files and folders those will be excluded from archives and the
5+ # Composer package (for purposes of making it smaller).
6+ /build export-ignore
7+ /docs export-ignore
8+ /tests export-ignore
9+ .editorconfig export-ignore
10+ .gitattributes export-ignore
11+ .gitignore export-ignore
12+ .php_cs export-ignore
13+ .composer.phar export-ignore
14+ * .xml export-ignore
15+ * .neon export-ignore
16+ * .md export-ignore
17+
18+ composer.lock - diff
19+
20+ * .php text eol =lf
Original file line number Diff line number Diff line change 1212_ide_helper.php
1313.phpstorm.meta.php
1414.env
15- /storage /
15+ /storage
1616/vendor
1717/node_modules
1818
1919# Languages
2020* .pyc
2121* .pyo
22- .php_cs.cache
23- .phpstan
24- .psalm
Original file line number Diff line number Diff line change 66use Illuminate \Support \ServiceProvider ;
77use VladimirYuldashev \LaravelQueueRabbitMQ \Queue \Connectors \RabbitMQConnector ;
88
9+ /**
10+ * Laravel provider for RMQ.
11+ */
912class LaravelQueueRabbitMQServiceProvider extends ServiceProvider
1013{
1114 /**
You can’t perform that action at this time.
0 commit comments