-
Notifications
You must be signed in to change notification settings - Fork 50
/
.gitignore
132 lines (109 loc) · 2.21 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# Email spool folder
/app/spool/*
# Cache, session files and logs (Symfony3)
/var/cache/*
/var/log/*
/var/logs/*
/var/sessions/*
!var/cache/.gitkeep
!var/logs/.gitkeep
!var/sessions/.gitkeep
/src/localfiles
# Parameters
/config/packages/parameters.yml
/config/packages/public/parameters_public.yml
/config/packages/public/parameters_smtp.yml
/config/packages/public/parameters_custom.yml
# LexikJWTAuthenticationBundle
/config/jwt/
/config/jwt/*.pem
# Parameters for Custom code - Myddleware 2 (Symfony 3)
/config/services_custom.yaml
# Custom directory
/src/Custom/*
# Managed by Composer
/app/bootstrap.php.cache
/var/bootstrap.php.cache
/bin/*
!bin/console
!bin/symfony_requirements
/vendor/
/public/bundles
/public/js/*
/public/css/*
# Assets and user uploads
/web/bundles/
/web/uploads/
# Assets managed by Bower
/web/assets/vendor/
# PHPUnit
/app/phpunit.xml
/phpunit.xml
# Build data
/build/
# Backup entities generated with doctrine:generate:entities command
*/Entity/*~
###> symfony/webpack-encore-bundle ###
/node_modules/
/public/build/
npm-debug.log
yarn-error.log
.yarn/*
!.yarn/patches
!.yarn/releases
!.yarn/plugins
!.yarn/sdks
!.yarn/versions
.pnp.*
###< symfony/webpack-encore-bundle ###
###> friendsofphp/php-cs-fixer ###
/.php_cs
/.php_cs.cache
.php-cs-fixer.cache
###< friendsofphp/php-cs-fixer ###
###> lexik/jwt-authentication-bundle ###
/config/packages/jwt/*.pem
###< lexik/jwt-authentication-bundle ##
###> symfony/phpunit-bridge ###
.phpunit
.phpunit.result.cache
/phpunit.xml
###< symfony/phpunit-bridge ###
###> local env file ###
.env.local
.env.local.php
.env.prod
.env.dev
/.env.*.local
###< env file ###
##> vscode and other IDE parameters ##
.vscode
/.idea/*
##< vscode parameters ##
##> old files & folders ##
/.platform/*
.platform.app.yaml
composer.phar
##< old files & folders ##
##> Docker ##
/docker/tmp/
!/docker/tmp/.gitkeep
/docker/var/
!/docker/var/*/.gitkeep
.env.docker
/docker/etc/openvpn/*
##< Docker ##
/migrations
## PHPCSFixer
.php-cs-fixer.php
.php-cs-fixer.cache
###> symfony/framework-bundle ###
/.env.local
/.env.local.php
/.env.*.local
/config/secrets/prod/prod.decrypt.private.php
/public/bundles/
/var/
/vendor/
###< symfony/framework-bundle ###
delete-cache-logs-myddleware.ps1