From 0dd1ca422368caa175c63852a853a7a70c4d4b3b Mon Sep 17 00:00:00 2001 From: rwerlich Date: Mon, 16 Oct 2017 09:52:28 -0200 Subject: [PATCH] Initial commit --- .gitignore | 41 +++++++++++++++++++++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 43 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6c224e0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,41 @@ +# Cache and logs (Symfony2) +/app/cache/* +/app/logs/* +!app/cache/.gitkeep +!app/logs/.gitkeep + +# Email spool folder +/app/spool/* + +# Cache, session files and logs (Symfony3) +/var/cache/* +/var/logs/* +/var/sessions/* +!var/cache/.gitkeep +!var/logs/.gitkeep +!var/sessions/.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 + +# Assets and user uploads +/web/bundles/ +/web/uploads/ + +# PHPUnit +/app/phpunit.xml +/phpunit.xml + +# Build data +/build/ + +# Backup entities generated with doctrine:generate:entities command +**/Entity/*~ diff --git a/README.md b/README.md new file mode 100644 index 0000000..172e95a --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# twitter-fake +Um twitter fake criado utilizando PHP + Symfony 3 + Ajax + Bootstrap