-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
executable file
·69 lines (55 loc) · 1 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
#
# This file is part of the `src-run/augustus-silencer-library` project.
#
# (c) Rob Frawley 2nd <[email protected]>
#
# For the full copyright and license information, view the LICENSE.md
# file distributed with this source code.
#
# Symfony 2
/app/cache/*
/app/logs/*
!app/cache/.gitkeep
!app/logs/.gitkeep
# Symfony 3
/var/cache/*
/var/logs/*
!var/cache/.gitkeep
!var/logs/.gitkeep
# Symfony/Silex/Other Parameter Files
/app/config/parameters.yml
/app/config/parameters.ini
# Composer-created Directories
/app/bootstrap.php.cache
/var/bootstrap.php.cache
/vendor/
/composer.lock
/composer
/composer.phar
# Generated Assets
/web/bundles/
/web/uploads/
/web/css/
/web/js/
/web/compiled
# PHPUnit (Non-Dist)
/phpunit.xml
/.phpunit.result.cache
# Build data
/build/*
!build/.gitkeep
# IDEA Directories
/.idea/
# Scribe-Specific
/app/config/sami.php
/config/
# libraries don't need bin, var directories
/bin/
/var/
# Remember to Use *.md Variants
LICENSE
README
# phpcsfixer cache
.php_cs.cache
.php-cs-fixer.cache
# EOF