Subversion Repositories oidplus

Rev

Rev 502 | Rev 593 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
487 daniel-mar 1
# Please make sure that .gitignore follows the svn:ignore properties
2
# Find them using these commands:
3
# svn propget svn:ignore * 2>/dev/null
4
# svn propget svn:ignore */* 2>/dev/null
5
# svn propget svn:ignore */*/* 2>/dev/null
6
# svn propget svn:ignore */*/*/* 2>/dev/null
7
# svn propget svn:ignore */*/*/*/* 2>/dev/null
8
# ...
9
 
587 daniel-mar 10
# Recommendation in https://phpstan.org/config-reference
11
# "The usual practice is to have phpstan.neon.dist under version control,
12
# and allow the user to override certain settings in their environment
13
# (on their own computer or on a continuous integration server) by creating
14
# phpstan.neon that’s present in .gitignore file."
15
phpstan.neon
16
 
487 daniel-mar 17
# (ViaThinkSoft internal)
18
dev/oidplus_1_with_token.html
19
 
20
# (deprecated)
21
includes/config.inc.php
22
 
23
# (deprecated)
24
plugins/publicPages/000_objects/welcome.local.html
25
 
26
userdata/attachments/*
27
!userdata/attachments/info.txt
28
 
29
userdata/baseconfig/config.inc.php
30
 
31
userdata/cache/*
32
!userdata/cache/info.txt
33
 
502 daniel-mar 34
userdata/database/*
35
!userdata/database/info.txt
487 daniel-mar 36
 
37
userdata/favicon/favicon.*
38
 
39
userdata/logs/*.log*
40
 
41
userdata/resources/*
42
!userdata/resources/info.txt
43
 
44
userdata/welcome/welcome.html
45