Skip to content

Commit 376a672

Browse files
author
Bastian Schwarz
committed
Initial commit
1 parent 107b249 commit 376a672

30 files changed

Lines changed: 95298 additions & 378 deletions

.gitignore

Lines changed: 125 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,131 @@
11
/.cache/*
22
/.logs/*
33
/test/.phpunit.result.cache
4+
!/**/.gitkeep
5+
.env
6+
7+
# Created by https://www.toptal.com/developers/gitignore/api/composer,phpstorm
8+
# Edit at https://www.toptal.com/developers/gitignore?templates=composer,phpstorm
9+
10+
### Composer ###
411
composer.phar
512
/vendor/
13+
14+
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
15+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
616
composer.lock
7-
/.idea
8-
/.env
9-
/tools/*
10-
!/**/.gitkeep
17+
18+
### PhpStorm ###
19+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
20+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
21+
22+
# User-specific stuff
23+
.idea/**/workspace.xml
24+
.idea/**/tasks.xml
25+
.idea/**/usage.statistics.xml
26+
.idea/**/dictionaries
27+
.idea/**/shelf
28+
29+
# AWS User-specific
30+
.idea/**/aws.xml
31+
32+
# Generated files
33+
.idea/**/contentModel.xml
34+
35+
# Sensitive or high-churn files
36+
.idea/**/dataSources/
37+
.idea/**/dataSources.ids
38+
.idea/**/dataSources.local.xml
39+
.idea/**/sqlDataSources.xml
40+
.idea/**/dynamic.xml
41+
.idea/**/uiDesigner.xml
42+
.idea/**/dbnavigator.xml
43+
44+
# Gradle
45+
.idea/**/gradle.xml
46+
.idea/**/libraries
47+
48+
# Gradle and Maven with auto-import
49+
# When using Gradle or Maven with auto-import, you should exclude module files,
50+
# since they will be recreated, and may cause churn. Uncomment if using
51+
# auto-import.
52+
# .idea/artifacts
53+
# .idea/compiler.xml
54+
# .idea/jarRepositories.xml
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+
# SonarLint plugin
83+
.idea/sonarlint/
84+
85+
# Crashlytics plugin (for Android Studio and IntelliJ)
86+
com_crashlytics_export_strings.xml
87+
crashlytics.properties
88+
crashlytics-build.properties
89+
fabric.properties
90+
91+
# Editor-based Rest Client
92+
.idea/httpRequests
93+
94+
# Android studio 3.1+ serialized cache file
95+
.idea/caches/build_file_checksums.ser
96+
97+
### PhpStorm Patch ###
98+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
99+
100+
# *.iml
101+
# modules.xml
102+
# .idea/misc.xml
103+
# *.ipr
104+
105+
# Sonarlint plugin
106+
# https://plugins.jetbrains.com/plugin/7973-sonarlint
107+
.idea/**/sonarlint/
108+
109+
# SonarQube Plugin
110+
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
111+
.idea/**/sonarIssues.xml
112+
113+
# Markdown Navigator plugin
114+
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
115+
.idea/**/markdown-navigator.xml
116+
.idea/**/markdown-navigator-enh.xml
117+
.idea/**/markdown-navigator/
118+
119+
# Cache file creation bug
120+
# See https://youtrack.jetbrains.com/issue/JBR-2257
121+
.idea/$CACHE_FILE$
122+
123+
# CodeStream plugin
124+
# https://plugins.jetbrains.com/plugin/12206-codestream
125+
.idea/codestream.xml
126+
127+
# Azure Toolkit for IntelliJ plugin
128+
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
129+
.idea/**/azureSettings.xml
130+
131+
# End of https://www.toptal.com/developers/gitignore/api/composer,phpstorm

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deployer.secrets.base.iml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 35 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 2 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.installer/install.php

Lines changed: 0 additions & 41 deletions
This file was deleted.

.installer/templates/.env

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)