streams/.gitignore
Klaus Weidenbach 745515b11f [FEATURE] Add config and use composer autoloader.
We use composer already to install SabreDAV. Include config
composer.(json|lock) to install and manage more dependencies
in future.
Also provide PSR-4 autoloading for our namespaced classes, e.g.
"Zotlabs\". To regenerate autoloader maps use:
$ composer install --optimize-autoloader --no-dev

We could also remove the whole vendor/ folder from our repository, but
that would need changes in deployment and how to install hubs and needs
more discussion first.
2016-10-18 18:11:41 +02:00

72 lines
1.3 KiB
Text
Executable file

## Ignore tmp, backup, logs and other junk files
*~
*.gz
*.out
*.bak
*.swp
*.log
*.lock
*.kate-swp
#Ignore emacs tempfiles
\#*
# patch attempts
*.orig
*.rej
# OSX .DS_Store files
.DS_Store
# version scripts (repo master only)
.version*
Thumbs.db
## Ignore RedMatrix site specific files and folders
.htconfig.php
favicon.*
addon/
custom/
/store/
# site apps
apps/
# default startpage
home.html
# page header plugin
pageheader.html
# Ignore site TOS
doc/SiteTOS.md
# themes except for redbasic
view/theme/*
! view/theme/redbasic
# site theme schemas
view/theme/redbasic/schema/default.php
# Doxygen API documentation, run 'doxygen util/Doxyfile' to generate it
doc/html/
# zotsh configuration files
.zotshrc
# external repositories for themes/addons
extend/
## exclude IDE files
# config files and folders from Eclipse
.project
.buildpath
.externalToolBuilders
.settings/
# NetBeans project folder
nbproject/
# Kdevelop project files
*.kdev4
# PHPStorm
.idea/
## composer
# locally installed composer binary
composer.phar
# vendor/ is managed by composer, no need to include in our repository
# requires new deployment and needs discussion first
#vendor/
# Exclude at least some vendor test files, examples, etc. so far
vendor/**/tests/
vendor/**/Test/
vendor/sabre/*/examples/