From 20d19ac10094646a5f0d3f0bc29456c5e6a8f410 Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Mon, 5 Aug 2019 23:29:59 +0200 Subject: [PATCH 1/2] [Messenger] Don't deep merge routing.senders config option --- src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md | 3 ++- .../FrameworkBundle/DependencyInjection/Configuration.php | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md b/src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md index 676129d04a..093f4bb1da 100644 --- a/src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md +++ b/src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md @@ -16,7 +16,8 @@ CHANGELOG * Overriding the methods `KernelTestCase::tearDown()` and `WebTestCase::tearDown()` without the `void` return-type is deprecated. * Added new `error_controller` configuration to handle system exceptions * Added sort option for `translation:update` command. - + * [BC Break] The `framework.messenger.routing.senders` config key is not deep merged anymore. + 4.3.0 ----- diff --git a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php index bf16ddc96f..5797cdec7e 100644 --- a/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php +++ b/src/Symfony/Bundle/FrameworkBundle/DependencyInjection/Configuration.php @@ -1162,6 +1162,7 @@ class Configuration implements ConfigurationInterface }) ->end() ->prototype('array') + ->performNoDeepMerging() ->children() ->arrayNode('senders') ->requiresAtLeastOneElement() From ac7dc24bcbc67ac1eb4ad6bfea9ba9cda9eb1eb5 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 5 Sep 2019 17:26:55 +0200 Subject: [PATCH 2/2] Adding .gitattributes to remove Tests directory from "dist" --- src/Symfony/Bridge/Doctrine/.gitattributes | 2 ++ src/Symfony/Bridge/Monolog/.gitattributes | 2 ++ src/Symfony/Bridge/ProxyManager/.gitattributes | 2 ++ src/Symfony/Bridge/Twig/.gitattributes | 2 ++ src/Symfony/Bundle/DebugBundle/.gitattributes | 2 ++ src/Symfony/Bundle/FrameworkBundle/.gitattributes | 2 ++ src/Symfony/Bundle/SecurityBundle/.gitattributes | 2 ++ src/Symfony/Bundle/TwigBundle/.gitattributes | 2 ++ src/Symfony/Bundle/WebProfilerBundle/.gitattributes | 2 ++ src/Symfony/Bundle/WebServerBundle/.gitattributes | 2 ++ src/Symfony/Component/Asset/.gitattributes | 2 ++ src/Symfony/Component/BrowserKit/.gitattributes | 2 ++ src/Symfony/Component/Cache/.gitattributes | 2 ++ src/Symfony/Component/Config/.gitattributes | 2 ++ src/Symfony/Component/Console/.gitattributes | 2 ++ src/Symfony/Component/CssSelector/.gitattributes | 2 ++ src/Symfony/Component/Debug/.gitattributes | 2 ++ src/Symfony/Component/DependencyInjection/.gitattributes | 2 ++ src/Symfony/Component/DomCrawler/.gitattributes | 2 ++ src/Symfony/Component/Dotenv/.gitattributes | 2 ++ src/Symfony/Component/ErrorHandler/.gitattributes | 2 ++ src/Symfony/Component/ErrorRenderer/.gitattributes | 2 ++ src/Symfony/Component/EventDispatcher/.gitattributes | 2 ++ src/Symfony/Component/ExpressionLanguage/.gitattributes | 2 ++ src/Symfony/Component/Filesystem/.gitattributes | 2 ++ src/Symfony/Component/Finder/.gitattributes | 2 ++ src/Symfony/Component/Form/.gitattributes | 2 ++ src/Symfony/Component/HttpClient/.gitattributes | 2 ++ src/Symfony/Component/HttpFoundation/.gitattributes | 2 ++ src/Symfony/Component/HttpKernel/.gitattributes | 2 ++ src/Symfony/Component/Inflector/.gitattributes | 2 ++ src/Symfony/Component/Intl/.gitattributes | 2 ++ src/Symfony/Component/Ldap/.gitattributes | 2 ++ src/Symfony/Component/Lock/.gitattributes | 2 ++ src/Symfony/Component/Mailer/.gitattributes | 2 ++ src/Symfony/Component/Mailer/Bridge/Amazon/.gitattributes | 2 ++ src/Symfony/Component/Mailer/Bridge/Google/.gitattributes | 2 ++ src/Symfony/Component/Mailer/Bridge/Mailchimp/.gitattributes | 2 ++ src/Symfony/Component/Mailer/Bridge/Mailgun/.gitattributes | 2 ++ src/Symfony/Component/Mailer/Bridge/Postmark/.gitattributes | 2 ++ src/Symfony/Component/Mailer/Bridge/Sendgrid/.gitattributes | 2 ++ src/Symfony/Component/Messenger/.gitattributes | 2 ++ src/Symfony/Component/Mime/.gitattributes | 2 ++ src/Symfony/Component/OptionsResolver/.gitattributes | 2 ++ src/Symfony/Component/Process/.gitattributes | 2 ++ src/Symfony/Component/PropertyAccess/.gitattributes | 2 ++ src/Symfony/Component/PropertyInfo/.gitattributes | 2 ++ src/Symfony/Component/Routing/.gitattributes | 2 ++ src/Symfony/Component/Security/Core/.gitattributes | 2 ++ src/Symfony/Component/Security/Csrf/.gitattributes | 2 ++ src/Symfony/Component/Security/Guard/.gitattributes | 2 ++ src/Symfony/Component/Security/Http/.gitattributes | 2 ++ src/Symfony/Component/Serializer/.gitattributes | 2 ++ src/Symfony/Component/Stopwatch/.gitattributes | 2 ++ src/Symfony/Component/Templating/.gitattributes | 2 ++ src/Symfony/Component/Translation/.gitattributes | 2 ++ src/Symfony/Component/Validator/.gitattributes | 2 ++ src/Symfony/Component/VarDumper/.gitattributes | 2 ++ src/Symfony/Component/VarExporter/.gitattributes | 2 ++ src/Symfony/Component/WebLink/.gitattributes | 2 ++ src/Symfony/Component/Workflow/.gitattributes | 2 ++ src/Symfony/Component/Yaml/.gitattributes | 2 ++ 62 files changed, 124 insertions(+) create mode 100644 src/Symfony/Bridge/Doctrine/.gitattributes create mode 100644 src/Symfony/Bridge/Monolog/.gitattributes create mode 100644 src/Symfony/Bridge/ProxyManager/.gitattributes create mode 100644 src/Symfony/Bridge/Twig/.gitattributes create mode 100644 src/Symfony/Bundle/DebugBundle/.gitattributes create mode 100644 src/Symfony/Bundle/FrameworkBundle/.gitattributes create mode 100644 src/Symfony/Bundle/SecurityBundle/.gitattributes create mode 100644 src/Symfony/Bundle/TwigBundle/.gitattributes create mode 100644 src/Symfony/Bundle/WebProfilerBundle/.gitattributes create mode 100644 src/Symfony/Bundle/WebServerBundle/.gitattributes create mode 100644 src/Symfony/Component/Asset/.gitattributes create mode 100644 src/Symfony/Component/BrowserKit/.gitattributes create mode 100644 src/Symfony/Component/Cache/.gitattributes create mode 100644 src/Symfony/Component/Config/.gitattributes create mode 100644 src/Symfony/Component/Console/.gitattributes create mode 100644 src/Symfony/Component/CssSelector/.gitattributes create mode 100644 src/Symfony/Component/Debug/.gitattributes create mode 100644 src/Symfony/Component/DependencyInjection/.gitattributes create mode 100644 src/Symfony/Component/DomCrawler/.gitattributes create mode 100644 src/Symfony/Component/Dotenv/.gitattributes create mode 100644 src/Symfony/Component/ErrorHandler/.gitattributes create mode 100644 src/Symfony/Component/ErrorRenderer/.gitattributes create mode 100644 src/Symfony/Component/EventDispatcher/.gitattributes create mode 100644 src/Symfony/Component/ExpressionLanguage/.gitattributes create mode 100644 src/Symfony/Component/Filesystem/.gitattributes create mode 100644 src/Symfony/Component/Finder/.gitattributes create mode 100644 src/Symfony/Component/Form/.gitattributes create mode 100644 src/Symfony/Component/HttpClient/.gitattributes create mode 100644 src/Symfony/Component/HttpFoundation/.gitattributes create mode 100644 src/Symfony/Component/HttpKernel/.gitattributes create mode 100644 src/Symfony/Component/Inflector/.gitattributes create mode 100644 src/Symfony/Component/Intl/.gitattributes create mode 100644 src/Symfony/Component/Ldap/.gitattributes create mode 100644 src/Symfony/Component/Lock/.gitattributes create mode 100644 src/Symfony/Component/Mailer/.gitattributes create mode 100644 src/Symfony/Component/Mailer/Bridge/Amazon/.gitattributes create mode 100644 src/Symfony/Component/Mailer/Bridge/Google/.gitattributes create mode 100644 src/Symfony/Component/Mailer/Bridge/Mailchimp/.gitattributes create mode 100644 src/Symfony/Component/Mailer/Bridge/Mailgun/.gitattributes create mode 100644 src/Symfony/Component/Mailer/Bridge/Postmark/.gitattributes create mode 100644 src/Symfony/Component/Mailer/Bridge/Sendgrid/.gitattributes create mode 100644 src/Symfony/Component/Messenger/.gitattributes create mode 100644 src/Symfony/Component/Mime/.gitattributes create mode 100644 src/Symfony/Component/OptionsResolver/.gitattributes create mode 100644 src/Symfony/Component/Process/.gitattributes create mode 100644 src/Symfony/Component/PropertyAccess/.gitattributes create mode 100644 src/Symfony/Component/PropertyInfo/.gitattributes create mode 100644 src/Symfony/Component/Routing/.gitattributes create mode 100644 src/Symfony/Component/Security/Core/.gitattributes create mode 100644 src/Symfony/Component/Security/Csrf/.gitattributes create mode 100644 src/Symfony/Component/Security/Guard/.gitattributes create mode 100644 src/Symfony/Component/Security/Http/.gitattributes create mode 100644 src/Symfony/Component/Serializer/.gitattributes create mode 100644 src/Symfony/Component/Stopwatch/.gitattributes create mode 100644 src/Symfony/Component/Templating/.gitattributes create mode 100644 src/Symfony/Component/Translation/.gitattributes create mode 100644 src/Symfony/Component/Validator/.gitattributes create mode 100644 src/Symfony/Component/VarDumper/.gitattributes create mode 100644 src/Symfony/Component/VarExporter/.gitattributes create mode 100644 src/Symfony/Component/WebLink/.gitattributes create mode 100644 src/Symfony/Component/Workflow/.gitattributes create mode 100644 src/Symfony/Component/Yaml/.gitattributes diff --git a/src/Symfony/Bridge/Doctrine/.gitattributes b/src/Symfony/Bridge/Doctrine/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Bridge/Doctrine/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Bridge/Monolog/.gitattributes b/src/Symfony/Bridge/Monolog/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Bridge/Monolog/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Bridge/ProxyManager/.gitattributes b/src/Symfony/Bridge/ProxyManager/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Bridge/ProxyManager/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Bridge/Twig/.gitattributes b/src/Symfony/Bridge/Twig/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Bridge/Twig/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Bundle/DebugBundle/.gitattributes b/src/Symfony/Bundle/DebugBundle/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Bundle/DebugBundle/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Bundle/FrameworkBundle/.gitattributes b/src/Symfony/Bundle/FrameworkBundle/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Bundle/FrameworkBundle/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Bundle/SecurityBundle/.gitattributes b/src/Symfony/Bundle/SecurityBundle/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Bundle/SecurityBundle/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Bundle/TwigBundle/.gitattributes b/src/Symfony/Bundle/TwigBundle/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Bundle/TwigBundle/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Bundle/WebProfilerBundle/.gitattributes b/src/Symfony/Bundle/WebProfilerBundle/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Bundle/WebProfilerBundle/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Bundle/WebServerBundle/.gitattributes b/src/Symfony/Bundle/WebServerBundle/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Bundle/WebServerBundle/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Asset/.gitattributes b/src/Symfony/Component/Asset/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Asset/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/BrowserKit/.gitattributes b/src/Symfony/Component/BrowserKit/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/BrowserKit/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Cache/.gitattributes b/src/Symfony/Component/Cache/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Cache/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Config/.gitattributes b/src/Symfony/Component/Config/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Config/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Console/.gitattributes b/src/Symfony/Component/Console/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Console/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/CssSelector/.gitattributes b/src/Symfony/Component/CssSelector/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/CssSelector/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Debug/.gitattributes b/src/Symfony/Component/Debug/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Debug/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/DependencyInjection/.gitattributes b/src/Symfony/Component/DependencyInjection/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/DependencyInjection/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/DomCrawler/.gitattributes b/src/Symfony/Component/DomCrawler/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/DomCrawler/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Dotenv/.gitattributes b/src/Symfony/Component/Dotenv/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Dotenv/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/ErrorHandler/.gitattributes b/src/Symfony/Component/ErrorHandler/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/ErrorHandler/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/ErrorRenderer/.gitattributes b/src/Symfony/Component/ErrorRenderer/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/ErrorRenderer/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/EventDispatcher/.gitattributes b/src/Symfony/Component/EventDispatcher/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/EventDispatcher/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/ExpressionLanguage/.gitattributes b/src/Symfony/Component/ExpressionLanguage/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/ExpressionLanguage/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Filesystem/.gitattributes b/src/Symfony/Component/Filesystem/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Filesystem/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Finder/.gitattributes b/src/Symfony/Component/Finder/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Finder/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Form/.gitattributes b/src/Symfony/Component/Form/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Form/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/HttpClient/.gitattributes b/src/Symfony/Component/HttpClient/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/HttpClient/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/HttpFoundation/.gitattributes b/src/Symfony/Component/HttpFoundation/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/HttpFoundation/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/HttpKernel/.gitattributes b/src/Symfony/Component/HttpKernel/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/HttpKernel/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Inflector/.gitattributes b/src/Symfony/Component/Inflector/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Inflector/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Intl/.gitattributes b/src/Symfony/Component/Intl/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Intl/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Ldap/.gitattributes b/src/Symfony/Component/Ldap/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Ldap/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Lock/.gitattributes b/src/Symfony/Component/Lock/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Lock/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Mailer/.gitattributes b/src/Symfony/Component/Mailer/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Mailer/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Mailer/Bridge/Amazon/.gitattributes b/src/Symfony/Component/Mailer/Bridge/Amazon/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Mailer/Bridge/Amazon/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Mailer/Bridge/Google/.gitattributes b/src/Symfony/Component/Mailer/Bridge/Google/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Mailer/Bridge/Google/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Mailer/Bridge/Mailchimp/.gitattributes b/src/Symfony/Component/Mailer/Bridge/Mailchimp/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Mailer/Bridge/Mailchimp/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Mailer/Bridge/Mailgun/.gitattributes b/src/Symfony/Component/Mailer/Bridge/Mailgun/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Mailer/Bridge/Mailgun/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Mailer/Bridge/Postmark/.gitattributes b/src/Symfony/Component/Mailer/Bridge/Postmark/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Mailer/Bridge/Postmark/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Mailer/Bridge/Sendgrid/.gitattributes b/src/Symfony/Component/Mailer/Bridge/Sendgrid/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Mailer/Bridge/Sendgrid/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Messenger/.gitattributes b/src/Symfony/Component/Messenger/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Messenger/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Mime/.gitattributes b/src/Symfony/Component/Mime/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Mime/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/OptionsResolver/.gitattributes b/src/Symfony/Component/OptionsResolver/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/OptionsResolver/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Process/.gitattributes b/src/Symfony/Component/Process/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Process/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/PropertyAccess/.gitattributes b/src/Symfony/Component/PropertyAccess/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/PropertyAccess/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/PropertyInfo/.gitattributes b/src/Symfony/Component/PropertyInfo/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/PropertyInfo/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Routing/.gitattributes b/src/Symfony/Component/Routing/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Routing/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Security/Core/.gitattributes b/src/Symfony/Component/Security/Core/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Security/Core/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Security/Csrf/.gitattributes b/src/Symfony/Component/Security/Csrf/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Security/Csrf/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Security/Guard/.gitattributes b/src/Symfony/Component/Security/Guard/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Security/Guard/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Security/Http/.gitattributes b/src/Symfony/Component/Security/Http/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Security/Http/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Serializer/.gitattributes b/src/Symfony/Component/Serializer/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Serializer/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Stopwatch/.gitattributes b/src/Symfony/Component/Stopwatch/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Stopwatch/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Templating/.gitattributes b/src/Symfony/Component/Templating/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Templating/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Translation/.gitattributes b/src/Symfony/Component/Translation/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Translation/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Validator/.gitattributes b/src/Symfony/Component/Validator/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Validator/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/VarDumper/.gitattributes b/src/Symfony/Component/VarDumper/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/VarDumper/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/VarExporter/.gitattributes b/src/Symfony/Component/VarExporter/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/VarExporter/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/WebLink/.gitattributes b/src/Symfony/Component/WebLink/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/WebLink/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Workflow/.gitattributes b/src/Symfony/Component/Workflow/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Workflow/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore diff --git a/src/Symfony/Component/Yaml/.gitattributes b/src/Symfony/Component/Yaml/.gitattributes new file mode 100644 index 0000000000..aa02dc6518 --- /dev/null +++ b/src/Symfony/Component/Yaml/.gitattributes @@ -0,0 +1,2 @@ +/Tests export-ignore +/phpunit.xml.dist export-ignore