Skip to content

Commit a574e81

Browse files
committed
Add git ignoring
Closes issue #1 - add gitignore file.
1 parent 1dea585 commit a574e81

File tree

1 file changed

+116
-0
lines changed

1 file changed

+116
-0
lines changed

.gitignore

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/phpstorm+all,composer,phpunit
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=phpstorm+all,composer,phpunit
4+
5+
### Composer ###
6+
composer.phar
7+
/vendor/
8+
9+
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
10+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
11+
composer.lock
12+
13+
### PhpStorm+all ###
14+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
15+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
16+
17+
# User-specific stuff
18+
.idea/**/workspace.xml
19+
.idea/**/tasks.xml
20+
.idea/**/usage.statistics.xml
21+
.idea/**/dictionaries
22+
.idea/**/shelf
23+
24+
# Generated files
25+
.idea/**/contentModel.xml
26+
27+
# Sensitive or high-churn files
28+
.idea/**/dataSources/
29+
.idea/**/dataSources.ids
30+
.idea/**/dataSources.local.xml
31+
.idea/**/sqlDataSources.xml
32+
.idea/**/dynamic.xml
33+
.idea/**/uiDesigner.xml
34+
.idea/**/dbnavigator.xml
35+
36+
# Gradle
37+
.idea/**/gradle.xml
38+
.idea/**/libraries
39+
40+
# Gradle and Maven with auto-import
41+
# When using Gradle or Maven with auto-import, you should exclude module files,
42+
# since they will be recreated, and may cause churn. Uncomment if using
43+
# auto-import.
44+
# .idea/artifacts
45+
# .idea/compiler.xml
46+
# .idea/jarRepositories.xml
47+
# .idea/modules.xml
48+
# .idea/*.iml
49+
# .idea/modules
50+
# *.iml
51+
# *.ipr
52+
53+
# CMake
54+
cmake-build-*/
55+
56+
# Mongo Explorer plugin
57+
.idea/**/mongoSettings.xml
58+
59+
# File-based project format
60+
*.iws
61+
62+
# IntelliJ
63+
out/
64+
65+
# mpeltonen/sbt-idea plugin
66+
.idea_modules/
67+
68+
# JIRA plugin
69+
atlassian-ide-plugin.xml
70+
71+
# Cursive Clojure plugin
72+
.idea/replstate.xml
73+
74+
# Crashlytics plugin (for Android Studio and IntelliJ)
75+
com_crashlytics_export_strings.xml
76+
crashlytics.properties
77+
crashlytics-build.properties
78+
fabric.properties
79+
80+
# Editor-based Rest Client
81+
.idea/httpRequests
82+
83+
# Android studio 3.1+ serialized cache file
84+
.idea/caches/build_file_checksums.ser
85+
86+
### PhpStorm+all Patch ###
87+
# Ignores the whole .idea folder and all .iml files
88+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
89+
90+
.idea/
91+
92+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
93+
94+
*.iml
95+
modules.xml
96+
.idea/misc.xml
97+
*.ipr
98+
99+
# Sonarlint plugin
100+
.idea/sonarlint
101+
102+
### PHPUnit ###
103+
# Covers PHPUnit
104+
# Reference: https://phpunit.de/
105+
106+
# Generated files
107+
.phpunit.result.cache
108+
109+
# PHPUnit
110+
/app/phpunit.xml
111+
# /phpunit.xml
112+
113+
# Build data
114+
/build/
115+
116+
# End of https://www.toptal.com/developers/gitignore/api/phpstorm+all,composer,phpunit

0 commit comments

Comments
 (0)