Skip to content

Commit fc8303f

Browse files
Initial commit
Signed-off-by: Bastian Schwarz <bastian@codename-php.de>
1 parent d8294f0 commit fc8303f

43 files changed

Lines changed: 98010 additions & 297 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.env.dist

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# UID and GID of your current user (e.g. wwwdev or developer). Can be looked up by using the linux command "id"
2+
# By default it is 1001 for vagrant vms (vagrant is 1000 and the next user is 1001)
3+
UID=1001
4+
GID=1001
5+
SSH_AUTH_SOCK=/run/user/1001/keyring/ssh

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
/.cache export-ignore
77
/.logs export-ignore
88
/.php_cs.dist export-ignore
9-
/.travis.yml export-ignore
109
/infection.json.dist export-ignore
1110
/phive.xml export-ignore
1211
/phpcomp.xml export-ignore

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
test_latest:
1919
strategy:
2020
matrix:
21-
php-versions: [ '8.0' ]
21+
php-versions: [ '8.1' ]
2222
prefer: [ 'prefer-lowest', 'prefer-stable' ]
2323
name: Test with ${{ matrix.prefer }} dependency versions on PHP ${{ matrix.php-versions }}
2424
runs-on: ubuntu-latest

.gitignore

Lines changed: 120 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,126 @@
22
/.logs/*
33
/test/.phpunit.result.cache
44
!/**/.gitkeep
5+
/.env
6+
7+
# Created by https://www.toptal.com/developers/gitignore/api/phpstorm,composer
8+
# Edit at https://www.toptal.com/developers/gitignore?templates=phpstorm,composer
9+
10+
### Composer ###
511
composer.phar
612
/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
716
composer.lock
8-
/.idea
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+
# End of https://www.toptal.com/developers/gitignore/api/phpstorm,composer

.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/codeStyles/codeStyleConfig.xml

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

.idea/copyright/Apache2.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.

.idea/copyright/profiles_settings.xml

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

.idea/deployer.base.iml

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

.idea/inspectionProfiles/Project_Default.xml

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

0 commit comments

Comments
 (0)