forked from cakephp/phinx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
38 lines (29 loc) · 874 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
# 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.
tests/log
# ignore core development artifacts
./db
./migrations
# sphinx generates HTML files for the documentation here
docs/_build
# composer installed dependencies
vendor
# this is user specific settings for running phpunit to override the defaults in phpunit.xml.dist
phpunit.xml
# sqlite test database
phinx_testing.sqlite3