Skip to content

Commit 8d11f3d

Browse files
First commit
0 parents  commit 8d11f3d

File tree

2 files changed

+125
-0
lines changed

2 files changed

+125
-0
lines changed

.gitignore

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
/.idea
2+
3+
# Created by https://www.gitignore.io/api/macos,phpstorm,composer
4+
# Edit at https://www.gitignore.io/?templates=macos,phpstorm,composer
5+
6+
### Composer ###
7+
composer.phar
8+
/vendor/
9+
10+
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
11+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
12+
# composer.lock
13+
14+
### macOS ###
15+
# General
16+
.DS_Store
17+
.AppleDouble
18+
.LSOverride
19+
20+
# Icon must end with two \r
21+
Icon
22+
23+
# Thumbnails
24+
._*
25+
26+
# Files that might appear in the root of a volume
27+
.DocumentRevisions-V100
28+
.fseventsd
29+
.Spotlight-V100
30+
.TemporaryItems
31+
.Trashes
32+
.VolumeIcon.icns
33+
.com.apple.timemachine.donotpresent
34+
35+
# Directories potentially created on remote AFP share
36+
.AppleDB
37+
.AppleDesktop
38+
Network Trash Folder
39+
Temporary Items
40+
.apdisk
41+
42+
### PhpStorm ###
43+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
44+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
45+
46+
# User-specific stuff
47+
.idea/**/workspace.xml
48+
.idea/**/tasks.xml
49+
.idea/**/usage.statistics.xml
50+
.idea/**/dictionaries
51+
.idea/**/shelf
52+
53+
# Generated files
54+
.idea/**/contentModel.xml
55+
56+
# Sensitive or high-churn files
57+
.idea/**/dataSources/
58+
.idea/**/dataSources.ids
59+
.idea/**/dataSources.local.xml
60+
.idea/**/sqlDataSources.xml
61+
.idea/**/dynamic.xml
62+
.idea/**/uiDesigner.xml
63+
.idea/**/dbnavigator.xml
64+
65+
# Gradle
66+
.idea/**/gradle.xml
67+
.idea/**/libraries
68+
69+
# Gradle and Maven with auto-import
70+
# When using Gradle or Maven with auto-import, you should exclude module files,
71+
# since they will be recreated, and may cause churn. Uncomment if using
72+
# auto-import.
73+
# .idea/modules.xml
74+
# .idea/*.iml
75+
# .idea/modules
76+
77+
# CMake
78+
cmake-build-*/
79+
80+
# Mongo Explorer plugin
81+
.idea/**/mongoSettings.xml
82+
83+
# File-based project format
84+
*.iws
85+
86+
# IntelliJ
87+
out/
88+
89+
# mpeltonen/sbt-idea plugin
90+
.idea_modules/
91+
92+
# JIRA plugin
93+
atlassian-ide-plugin.xml
94+
95+
# Cursive Clojure plugin
96+
.idea/replstate.xml
97+
98+
# Crashlytics plugin (for Android Studio and IntelliJ)
99+
com_crashlytics_export_strings.xml
100+
crashlytics.properties
101+
crashlytics-build.properties
102+
fabric.properties
103+
104+
# Editor-based Rest Client
105+
.idea/httpRequests
106+
107+
# Android studio 3.1+ serialized cache file
108+
.idea/caches/build_file_checksums.ser
109+
110+
# JetBrains templates
111+
**___jb_tmp___
112+
113+
### PhpStorm Patch ###
114+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
115+
116+
# *.iml
117+
# modules.xml
118+
# .idea/misc.xml
119+
# *.ipr
120+
121+
# Sonarlint plugin
122+
.idea/sonarlint
123+
124+
# End of https://www.gitignore.io/api/macos,phpstorm,composer

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# TODO

0 commit comments

Comments
 (0)