Skip to content

Commit 4352698

Browse files
committed
Preperation for local developement.
- Added gitignore file. - Added composer lock file.
1 parent 9700db7 commit 4352698

File tree

2 files changed

+1695
-1
lines changed

2 files changed

+1695
-1
lines changed

.gitignore

Lines changed: 108 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,108 @@
1-
/vendor
1+
2+
# Created by https://www.gitignore.io/api/windows,eclipse,composer
3+
# Edit at https://www.gitignore.io/?templates=windows,eclipse,composer
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+
### Eclipse ###
14+
.metadata
15+
bin/
16+
tmp/
17+
*.tmp
18+
*.bak
19+
*.swp
20+
*~.nib
21+
local.properties
22+
.settings/
23+
.loadpath
24+
.recommenders
25+
26+
# External tool builders
27+
.externalToolBuilders/
28+
29+
# Locally stored "Eclipse launch configurations"
30+
*.launch
31+
32+
# PyDev specific (Python IDE for Eclipse)
33+
*.pydevproject
34+
35+
# CDT-specific (C/C++ Development Tooling)
36+
.cproject
37+
38+
# CDT- autotools
39+
.autotools
40+
41+
# Java annotation processor (APT)
42+
.factorypath
43+
44+
# PDT-specific (PHP Development Tools)
45+
.buildpath
46+
47+
# sbteclipse plugin
48+
.target
49+
50+
# Tern plugin
51+
.tern-project
52+
53+
# TeXlipse plugin
54+
.texlipse
55+
56+
# STS (Spring Tool Suite)
57+
.springBeans
58+
59+
# Code Recommenders
60+
.recommenders/
61+
62+
# Annotation Processing
63+
.apt_generated/
64+
65+
# Scala IDE specific (Scala & Java development for Eclipse)
66+
.cache-main
67+
.scala_dependencies
68+
.worksheet
69+
70+
### Eclipse Patch ###
71+
# Eclipse Core
72+
.project
73+
74+
# JDT-specific (Eclipse Java Development Tools)
75+
.classpath
76+
77+
# Annotation Processing
78+
.apt_generated
79+
80+
.sts4-cache/
81+
82+
### Windows ###
83+
# Windows thumbnail cache files
84+
Thumbs.db
85+
Thumbs.db:encryptable
86+
ehthumbs.db
87+
ehthumbs_vista.db
88+
89+
# Dump file
90+
*.stackdump
91+
92+
# Folder config file
93+
[Dd]esktop.ini
94+
95+
# Recycle Bin used on file shares
96+
$RECYCLE.BIN/
97+
98+
# Windows Installer files
99+
*.cab
100+
*.msi
101+
*.msix
102+
*.msm
103+
*.msp
104+
105+
# Windows shortcuts
106+
*.lnk
107+
108+
# End of https://www.gitignore.io/api/windows,eclipse,composer

0 commit comments

Comments
 (0)