1
|
# Created by https://www.gitignore.io/api/laravel,phpstorm+all
|
2
|
# Edit at https://www.gitignore.io/?templates=laravel,phpstorm+all
|
3
|
|
4
|
### Laravel ###
|
5
|
/vendor/
|
6
|
node_modules/
|
7
|
npm-debug.log
|
8
|
yarn-error.log
|
9
|
|
10
|
# Laravel 4 specific
|
11
|
bootstrap/compiled.php
|
12
|
app/storage/
|
13
|
|
14
|
# Laravel 5 & Lumen specific
|
15
|
public/storage
|
16
|
public/hot
|
17
|
storage/*.key
|
18
|
.env
|
19
|
Homestead.yaml
|
20
|
Homestead.json
|
21
|
/.vagrant
|
22
|
.phpunit.result.cache
|
23
|
|
24
|
### PhpStorm+all ###
|
25
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
26
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
27
|
|
28
|
# User-specific stuff
|
29
|
.idea/**/workspace.xml
|
30
|
.idea/**/tasks.xml
|
31
|
.idea/**/usage.statistics.xml
|
32
|
.idea/**/dictionaries
|
33
|
.idea/**/shelf
|
34
|
|
35
|
# Generated files
|
36
|
.idea/**/contentModel.xml
|
37
|
|
38
|
# Sensitive or high-churn files
|
39
|
.idea/**/dataSources/
|
40
|
.idea/**/dataSources.ids
|
41
|
.idea/**/dataSources.local.xml
|
42
|
.idea/**/sqlDataSources.xml
|
43
|
.idea/**/dynamic.xml
|
44
|
.idea/**/uiDesigner.xml
|
45
|
.idea/**/dbnavigator.xml
|
46
|
|
47
|
# Gradle
|
48
|
.idea/**/gradle.xml
|
49
|
.idea/**/libraries
|
50
|
|
51
|
# Gradle and Maven with auto-import
|
52
|
# When using Gradle or Maven with auto-import, you should exclude module files,
|
53
|
# since they will be recreated, and may cause churn. Uncomment if using
|
54
|
# auto-import.
|
55
|
# .idea/modules.xml
|
56
|
# .idea/*.iml
|
57
|
# .idea/modules
|
58
|
# *.iml
|
59
|
# *.ipr
|
60
|
|
61
|
# CMake
|
62
|
cmake-build-*/
|
63
|
|
64
|
# Mongo Explorer plugin
|
65
|
.idea/**/mongoSettings.xml
|
66
|
|
67
|
# File-based project format
|
68
|
*.iws
|
69
|
|
70
|
# IntelliJ
|
71
|
out/
|
72
|
|
73
|
# mpeltonen/sbt-idea plugin
|
74
|
.idea_modules/
|
75
|
|
76
|
# JIRA plugin
|
77
|
atlassian-ide-plugin.xml
|
78
|
|
79
|
# Cursive Clojure plugin
|
80
|
.idea/replstate.xml
|
81
|
|
82
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
83
|
com_crashlytics_export_strings.xml
|
84
|
crashlytics.properties
|
85
|
crashlytics-build.properties
|
86
|
fabric.properties
|
87
|
|
88
|
# Editor-based Rest Client
|
89
|
.idea/httpRequests
|
90
|
|
91
|
# Android studio 3.1+ serialized cache file
|
92
|
.idea/caches/build_file_checksums.ser
|
93
|
|
94
|
### PhpStorm+all Patch ###
|
95
|
# Ignores the whole .idea folder and all .iml files
|
96
|
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
|
97
|
|
98
|
.idea/
|
99
|
|
100
|
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
|
101
|
|
102
|
*.iml
|
103
|
modules.xml
|
104
|
.idea/misc.xml
|
105
|
*.ipr
|
106
|
|
107
|
# Sonarlint plugin
|
108
|
.idea/sonarlint
|
109
|
|
110
|
# End of https://www.gitignore.io/api/laravel,phpstorm+all
|