diff options
author | Unknwon <u@gogs.io> | 2015-07-09 19:46:42 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-07-09 19:46:42 +0800 |
commit | eb0f0710f070eb24cdf4243023eb010451525159 (patch) | |
tree | 69a0ce83cb56998afbf73c5bd8e106572f6176dd /conf/gitignore | |
parent | a2a9e151f8e6d0968035b61d034704fb7b34d3e5 (diff) | |
download | gitea-eb0f0710f070eb24cdf4243023eb010451525159.tar.gz gitea-eb0f0710f070eb24cdf4243023eb010451525159.zip |
add more gitignores
Diffstat (limited to 'conf/gitignore')
-rw-r--r-- | conf/gitignore/PHP CakePHP | 13 | ||||
-rw-r--r-- | conf/gitignore/PHP FuelPHP | 2 | ||||
-rw-r--r-- | conf/gitignore/PHP Laravel | 4 | ||||
-rw-r--r-- | conf/gitignore/PHP Symfony | 37 | ||||
-rw-r--r-- | conf/gitignore/PHP Yii | 6 | ||||
-rw-r--r-- | conf/gitignore/PHP ZendFramework | 20 |
6 files changed, 82 insertions, 0 deletions
diff --git a/conf/gitignore/PHP CakePHP b/conf/gitignore/PHP CakePHP new file mode 100644 index 0000000000..55a665e46f --- /dev/null +++ b/conf/gitignore/PHP CakePHP @@ -0,0 +1,13 @@ +# CakePHP 3 + +/vendor/* +/config/app.php +/tmp/* +/logs/* + +# CakePHP 2 + +/app/tmp/* +/app/Config/core.php +/app/Config/database.php +/vendors/* diff --git a/conf/gitignore/PHP FuelPHP b/conf/gitignore/PHP FuelPHP new file mode 100644 index 0000000000..7804d8d22e --- /dev/null +++ b/conf/gitignore/PHP FuelPHP @@ -0,0 +1,2 @@ +fuel/app/logs/*/*/* +fuel/app/cache/*/* diff --git a/conf/gitignore/PHP Laravel b/conf/gitignore/PHP Laravel new file mode 100644 index 0000000000..36d7adeb76 --- /dev/null +++ b/conf/gitignore/PHP Laravel @@ -0,0 +1,4 @@ +/bootstrap/compiled.php +.env.*.php +.env.php +.env diff --git a/conf/gitignore/PHP Symfony b/conf/gitignore/PHP Symfony new file mode 100644 index 0000000000..c68377d1ac --- /dev/null +++ b/conf/gitignore/PHP Symfony @@ -0,0 +1,37 @@ +# Cache and logs (Symfony2) +/app/cache/* +/app/logs/* +!app/cache/.gitkeep +!app/logs/.gitkeep + +# Cache and logs (Symfony3) +/var/cache/* +/var/logs/* +!var/cache/.gitkeep +!var/logs/.gitkeep + +# Parameters +/app/config/parameters.yml +/app/config/parameters.ini + +# Managed by Composer +/app/bootstrap.php.cache +/var/bootstrap.php.cache +/bin/* +!bin/console +!bin/symfony_requirements +/vendor/ + +# Assets and user uploads +/web/bundles/ +/web/uploads/ + +# PHPUnit +/app/phpunit.xml +/phpunit.xml + +# Build data +/build/ + +# Composer PHAR +/composer.phar diff --git a/conf/gitignore/PHP Yii b/conf/gitignore/PHP Yii new file mode 100644 index 0000000000..70f087546f --- /dev/null +++ b/conf/gitignore/PHP Yii @@ -0,0 +1,6 @@ +assets/* +!assets/.gitignore +protected/runtime/* +!protected/runtime/.gitignore +protected/data/*.db +themes/classic/views/ diff --git a/conf/gitignore/PHP ZendFramework b/conf/gitignore/PHP ZendFramework new file mode 100644 index 0000000000..3fbc97334c --- /dev/null +++ b/conf/gitignore/PHP ZendFramework @@ -0,0 +1,20 @@ +# Composer files +composer.phar +vendor/ + +# Local configs +config/autoload/*.local.php + +# Binary gettext files +*.mo + +# Data +data/logs/ +data/cache/ +data/sessions/ +data/tmp/ +temp/ + +# Legacy ZF1 +demos/ +extras/documentation |