Skip to content

Commit 3dc401e

Browse files
committed
Init
0 parents  commit 3dc401e

File tree

3 files changed

+137
-0
lines changed

3 files changed

+137
-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

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/.github export-ignore
2+
/art export-ignore
3+
/docs export-ignore

.gitignore

+119
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
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+
### Laravel ###
10+
node_modules/
11+
npm-debug.log
12+
yarn-error.log
13+
14+
# Laravel 4 specific
15+
bootstrap/compiled.php
16+
app/storage/
17+
18+
# Laravel 5 & Lumen specific
19+
public/storage
20+
public/hot
21+
22+
# Laravel 5 & Lumen specific with changed public path
23+
public_html/storage
24+
public_html/hot
25+
26+
storage/*.key
27+
.env
28+
Homestead.yaml
29+
Homestead.json
30+
/.vagrant
31+
.phpunit.result.cache
32+
33+
### Linux ###
34+
*~
35+
36+
# temporary files which can be created if a process still has a handle open of a deleted file
37+
.fuse_hidden*
38+
39+
# KDE directory preferences
40+
.directory
41+
42+
# Linux trash folder which might appear on any partition or disk
43+
.Trash-*
44+
45+
# .nfs files are created when an open file is removed but is still being accessed
46+
.nfs*
47+
48+
### macOS ###
49+
# General
50+
.DS_Store
51+
.AppleDouble
52+
.LSOverride
53+
54+
# Icon must end with two \r
55+
Icon
56+
57+
58+
# Thumbnails
59+
._*
60+
61+
# Files that might appear in the root of a volume
62+
.DocumentRevisions-V100
63+
.fseventsd
64+
.Spotlight-V100
65+
.TemporaryItems
66+
.Trashes
67+
.VolumeIcon.icns
68+
.com.apple.timemachine.donotpresent
69+
70+
# Directories potentially created on remote AFP share
71+
.AppleDB
72+
.AppleDesktop
73+
Network Trash Folder
74+
Temporary Items
75+
.apdisk
76+
77+
### macOS Patch ###
78+
# iCloud generated files
79+
*.icloud
80+
81+
### PHPUnit ###
82+
# Covers PHPUnit
83+
# Reference: https://phpunit.de/
84+
85+
# Generated files
86+
.phpunit.cache
87+
88+
# PHPUnit
89+
/app/phpunit.xml
90+
/phpunit.xml
91+
92+
# Build data
93+
/build/
94+
95+
### Windows ###
96+
# Windows thumbnail cache files
97+
Thumbs.db
98+
Thumbs.db:encryptable
99+
ehthumbs.db
100+
ehthumbs_vista.db
101+
102+
# Dump file
103+
*.stackdump
104+
105+
# Folder config file
106+
[Dd]esktop.ini
107+
108+
# Recycle Bin used on file shares
109+
$RECYCLE.BIN/
110+
111+
# Windows Installer files
112+
*.cab
113+
*.msi
114+
*.msix
115+
*.msm
116+
*.msp
117+
118+
# Windows shortcuts
119+
*.lnk

0 commit comments

Comments
 (0)