-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy path.gitignore
95 lines (85 loc) · 1.88 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# It's highly recommended to use a global gitignore: https://help.github.com/en/github/using-git/ignoring-files
# Here is a sample: https://gist.github.com/vincentchalamon/d5defad563ed49d9306a4aa57dfd4498
errors.log
rox_local.ini
*.cache.ini
.php_cs.cache
.phpunit.result.cache
/data/*
!data/user/avatars/.gitkeep
!data/gallery/member/.gitkeep
google*.html
tools/testenv/images/status.csv
components/*
revision.txt
.buildpath
.sass-cache
doc/
/docker/db/*
!docker/db/.gitkeep
docker-compose.override.*
!docker-compose.override.yml.dist
composer.phar
auth.json
/.vagrant/*
/db_dumps/*
/ansible/cert.crt
/ansible/key.pem
coverage/
phpmetrics.html
phpmetrics.xml
VERSION
htdocs/assets/
config/*.local.yml
phploc.xml
/tools/testenv/images/lfw/*.jpg
/public/main.js
/public/images/newsletters/
/public/main.js.map
/public/service-worker.js
/public/service-worker.js.map
/swagger.json
/build/logs/
# geonames files (created by geonames:update command)
admin1CodesASCII.txt
countryInfo.txt
allCountries.zip
# deployer config
/config/deployer.yml
###> symfony/framework-bundle ###
/.env.local
/.env.local.*
/.env.*.local
/public/bundles/
/var/
/vendor/
###< symfony/framework-bundle ###
###> symfony/phpunit-bridge ###
.phpunit
/phpunit.xml
.phpunit.result.cache
###< symfony/phpunit-bridge ###
###> symfony/webpack-encore-bundle ###
/node_modules/
/public/build/
/public/main.js*
/public/service-worker.js*
npm-debug.log
yarn-error.log
###< symfony/webpack-encore-bundle ###
###> squizlabs/php_codesniffer ###
/.phpcs-cache
/phpcs.xml
###< squizlabs/php_codesniffer ###
###> lexik/jwt-authentication-bundle ###
/config/jwt/*.pem
!/config/jwt/*-test.pem
###< lexik/jwt-authentication-bundle ###
###> friends-of-behat/symfony-extension ###
/behat.yml
###< friends-of-behat/symfony-extension ###
/infection.log
###> friendsofphp/php-cs-fixer ###
/.php-cs-fixer.php
/.php-cs-fixer.cache
###< friendsofphp/php-cs-fixer ###