Skip to content

Commit fff3112

Browse files
authored
Version 2.0.0 (#13)
Overhaul for implementing new FCM API
1 parent 0d46841 commit fff3112

26 files changed

+1950
-944
lines changed

.editorconfig

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,33 @@
1-
; This file is for unifying the coding style for different editors and IDEs.
2-
; More information at http://editorconfig.org
3-
41
root = true
52

63
[*]
74
charset = utf-8
8-
indent_size = 4
9-
indent_style = space
105
end_of_line = lf
116
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
129
trim_trailing_whitespace = true
1310

11+
[*.blade.php]
12+
indent_size = 2
13+
14+
[*.js]
15+
indent_size = 2
16+
17+
[*.scss]
18+
indent_size = 2
19+
20+
[*.css]
21+
indent_size = 2
22+
23+
[*.vue]
24+
indent_size = 2
25+
1426
[*.md]
1527
trim_trailing_whitespace = false
28+
29+
[*.yml]
30+
indent_size = 2
31+
32+
[*.json]
33+
indent_size = 4

.scrutinizer.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
filter:
2-
excluded_paths: [tests/*]
2+
excluded_paths: [tests/*]
33

44
checks:
5-
php:
6-
remove_extra_empty_lines: true
7-
remove_php_closing_tag: true
8-
remove_trailing_whitespace: true
9-
fix_use_statements:
10-
remove_unused: true
11-
preserve_multiple: false
12-
preserve_blanklines: true
13-
order_alphabetically: true
14-
fix_php_opening_tag: true
15-
fix_linefeed: true
16-
fix_line_ending: true
17-
fix_identation_4spaces: true
18-
fix_doc_comments: true
5+
php:
6+
remove_extra_empty_lines: true
7+
remove_php_closing_tag: true
8+
remove_trailing_whitespace: true
9+
fix_use_statements:
10+
remove_unused: true
11+
preserve_multiple: false
12+
preserve_blanklines: true
13+
order_alphabetically: true
14+
fix_php_opening_tag: true
15+
fix_linefeed: true
16+
fix_line_ending: true
17+
fix_identation_4spaces: true
18+
fix_doc_comments: true
1919

2020
tools:
21-
external_code_coverage: false
21+
external_code_coverage: false

.styleci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,8 @@
11
preset: laravel
2+
3+
enabled:
4+
- concat_with_spaces
5+
6+
disabled:
7+
- concat_without_spaces
8+
- phpdoc_summary

.travis.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)