Skip to content

Commit 5698274

Browse files
committed
Init repository
0 parents  commit 5698274

File tree

6 files changed

+624
-0
lines changed

6 files changed

+624
-0
lines changed

.editorconfig

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
# Unix-style newlines with a newline ending every file
7+
[*]
8+
end_of_line = lf
9+
insert_final_newline = true
10+
charset = utf-8
11+
12+
# PHP - http://php.net/
13+
[*.php]
14+
indent_style = tab
15+
indent_size = 4
16+
17+
# NEON - https://ne-on.org/
18+
[{*.neon,*.neon.dist}]
19+
indent_style = tab
20+
indent_size = 4
21+
22+
# CommonMark - https://commonmark.org/
23+
# GitHub Flavored Markdown Spec - https://github.github.com/gfm/
24+
[*.md]
25+
trim_trailing_whitespace = false

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/cache/
2+
/resultCache.php
3+
/vendor/*

0 commit comments

Comments
 (0)