forked from ezsystems/ezplatform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
120 lines (107 loc) · 2.37 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
# All user specific files from now on should be kept in the global .gitignore file
# located in the user's local environment. To do so you have to inform Git which
# files should be excluded globally (for every Git repository).
#
# Here is a short instruction about how to exclude selected files globally:
#
# - create a new .gitignore file in your home folder:
# touch ~/.gitignore
#
# - add some exclusions, eg:
# /nbproject/
# /.idea/
#
# - inform Git where it should start looking for .gitignore file:
# git config --global core.excludesfile ~/.gitignore
#
# More details about excluding specific file on your local environment can be found
# in the official GitHub article: https://help.github.com/articles/ignoring-files/
/.web-server-pid
/build/
/phpunit.xml
/.phpunit.result.cache
/.rules
/var/*
!/var/cache
/var/cache/*
!var/cache/.gitkeep
!/var/log
/var/log/*
!var/log/.gitkeep
!/var/sessions
/var/sessions/*
!var/sessions/.gitkeep
!/var/encore
/var/encore/*
!var/encore/.gitkeep
/vendor/
/public/bundles/
/public/assets/translations/*
/public/assets/build/*
!public/assets/build/.gitkeep
/public/assets/ezplatform/build/*
!/public/assets/ezplatform/build/.gitkeep
/node_modules/
/bin/*
!bin/.ci/
!bin/.travis/
!bin/console
!bin/platformsh_prestart_cacheclear.sh
!bin/vhost.sh
.php~
/config/graphql/
/doc/docker/entrypoint/*/*.sql
/dfsdata
/public/css/
/public/js/
/public/fonts/
/public/design
/public/extension
/public/share
/public/var
/public/.htaccess
composer.phar
composer.lock
symfony.lock
yarn.lock
.buildpath
.project
.settings/
behat.yml
.php_cs.cache
auth.json
ide-twig.json
###> symfony/framework-bundle ###
/.env.local
/.env.local.php
/.env.*.local
/public/bundles/
/var/
/vendor/
###< symfony/framework-bundle ###
###> liip/imagine-bundle ###
/public/media/cache/
###< liip/imagine-bundle ###
###> symfony/webpack-encore-bundle ###
/node_modules/
/public/build/
npm-debug.log
yarn-error.log
###< symfony/webpack-encore-bundle ###
###> behat/symfony2-extension ###
behat.yml
###< behat/symfony2-extension ###
###> symfony/phpunit-bridge ###
.phpunit
/phpunit.xml
###< symfony/phpunit-bridge ###
###> phpunit/phpunit ###
/phpunit.xml
.phpunit.result.cache
###< phpunit/phpunit ###
###> friends-of-behat/symfony-extension ###
/behat.yml
###< friends-of-behat/symfony-extension ###
###> lexik/jwt-authentication-bundle ###
/config/jwt/*.pem
###< lexik/jwt-authentication-bundle ###