diff --git a/recipes/symfony/framework-bundle/manifest.json b/recipes/symfony/framework-bundle/manifest.json index 1219e1ce..41ada498 100644 --- a/recipes/symfony/framework-bundle/manifest.json +++ b/recipes/symfony/framework-bundle/manifest.json @@ -24,5 +24,20 @@ "\t@echo \"Run \\033[32mcomposer require symfony/web-server-bundle\\033[39m for a better web server\"", "\tphp -S 127.0.0.1:8000 -t web", ".PHONY: serve" + ], + "gitignore": [ + ".env", + "/var/*", + "!/var/cache", + "/var/cache/*", + "!var/cache/.gitkeep", + "!/var/logs", + "/var/logs/*", + "!var/logs/.gitkeep", + "!/var/sessions", + "/var/sessions/*", + "!var/sessions/.gitkeep", + "/vendor/", + "/web/bundles/" ] } diff --git a/recipes/symfony/phpunit-bridge/manifest.json b/recipes/symfony/phpunit-bridge/manifest.json index d7c6ae69..bfef46ff 100644 --- a/recipes/symfony/phpunit-bridge/manifest.json +++ b/recipes/symfony/phpunit-bridge/manifest.json @@ -1,5 +1,8 @@ { "copy-from-recipe": { "phpunit.xml.dist": "phpunit.xml.dist" - } + }, + "gitignore": [ + "/phpunit.xml" + ] } diff --git a/recipes/symfony/web-server-bundle/manifest.json b/recipes/symfony/web-server-bundle/manifest.json index df5292f1..28dbf44c 100644 --- a/recipes/symfony/web-server-bundle/manifest.json +++ b/recipes/symfony/web-server-bundle/manifest.json @@ -1,5 +1,8 @@ { "bundles": { "Symfony\\Bundle\\WebServerBundle\\WebServerBundle": ["dev"] - } + }, + "gitignore": [ + ".web-server-pid" + ] }