Skip to content

Commit 1c6a3a2

Browse files
committed
Init
0 parents  commit 1c6a3a2

File tree

3 files changed

+120
-0
lines changed

3 files changed

+120
-0
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_size = 4
6+
indent_style = space
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false
13+
14+
[*.{yml,yaml}]
15+
indent_size = 2

.gitattributes

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/.github export-ignore
2+
/.gitattributes export-ignore
3+
/.gitignore export-ignore
4+
/phpunit.xml.dist export-ignore
5+
/tests export-ignore
6+
/.editorconfig export-ignore
7+
/.php-cs-fixer.dist.php export-ignore
8+
/art export-ignore
9+
/docs export-ignore

.gitignore

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
### Composer ###
2+
composer.phar
3+
/vendor/
4+
5+
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
6+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
7+
# composer.lock
8+
9+
### Linux ###
10+
*~
11+
12+
# temporary files which can be created if a process still has a handle open of a deleted file
13+
.fuse_hidden*
14+
15+
# KDE directory preferences
16+
.directory
17+
18+
# Linux trash folder which might appear on any partition or disk
19+
.Trash-*
20+
21+
# .nfs files are created when an open file is removed but is still being accessed
22+
.nfs*
23+
24+
### macOS ###
25+
# General
26+
.DS_Store
27+
.AppleDouble
28+
.LSOverride
29+
30+
# Icon must end with two \r
31+
Icon
32+
33+
34+
# Thumbnails
35+
._*
36+
37+
# Files that might appear in the root of a volume
38+
.DocumentRevisions-V100
39+
.fseventsd
40+
.Spotlight-V100
41+
.TemporaryItems
42+
.Trashes
43+
.VolumeIcon.icns
44+
.com.apple.timemachine.donotpresent
45+
46+
# Directories potentially created on remote AFP share
47+
.AppleDB
48+
.AppleDesktop
49+
Network Trash Folder
50+
Temporary Items
51+
.apdisk
52+
53+
### macOS Patch ###
54+
# iCloud generated files
55+
*.icloud
56+
57+
### PHPUnit ###
58+
# Covers PHPUnit
59+
# Reference: https://phpunit.de/
60+
61+
# Generated files
62+
.phpunit.result.cache
63+
.phpunit.cache
64+
65+
# PHPUnit
66+
/app/phpunit.xml
67+
/phpunit.xml
68+
69+
# Build data
70+
/build/
71+
72+
### Windows ###
73+
# Windows thumbnail cache files
74+
Thumbs.db
75+
Thumbs.db:encryptable
76+
ehthumbs.db
77+
ehthumbs_vista.db
78+
79+
# Dump file
80+
*.stackdump
81+
82+
# Folder config file
83+
[Dd]esktop.ini
84+
85+
# Recycle Bin used on file shares
86+
$RECYCLE.BIN/
87+
88+
# Windows Installer files
89+
*.cab
90+
*.msi
91+
*.msix
92+
*.msm
93+
*.msp
94+
95+
# Windows shortcuts
96+
*.lnk

0 commit comments

Comments
 (0)