-
Notifications
You must be signed in to change notification settings - Fork 889
/
.gitignore
47 lines (37 loc) · 983 Bytes
/
.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
# These all appear to be hidden files from various IDEs & Operating Systems.
# These probably belong in ~/.gitignore_global and not in here.
# See https://help.github.com/articles/ignoring-files
.DS_Store
.buildpath
.project
.settings
.idea
# These seem to be generated by the build tool for releasing a tagged version of this software
build/
*.tgz
dist/
# Don't commit composer.phar, or the .phar our build tool generates
*.phar
# Don't commit composer lock file
composer.lock
# this is the code coverage generated when running phpunit.
/logs/
# ignore core development artifacts
/db/
/migrations/
/phinx.yml
/phinx.yaml
/phinx.php
/phinx.json
# python artifacts
*.pyc
# sphinx generates HTML files for the documentation here
docs/_build
docs/*/_build/
# composer installed dependencies
vendor/
# this is user specific settings for running phpunit to override the defaults in phpunit.xml.dist
phpunit.xml
.phpunit.result.cache
# sqlite test database
phinx_testing.sqlite3