From: Daniel Beyer <dabe@deb.ymc.ch>
Date: Sun, 26 Oct 2014 14:46:08 +0100
Subject: Remove content from README.md files

Forwarded: not-needed

Some README.md files do not add any value above the Debian package
description. Additionally they mention how to run unit tests, which will
not work with the Debian packages, since they ship without them.
---
 src/Symfony/Bridge/Doctrine/README.md              | 14 -------------
 src/Symfony/Bridge/Monolog/README.md               | 13 ------------
 src/Symfony/Bridge/Propel1/README.md               | 13 ------------
 src/Symfony/Bridge/ProxyManager/README.md          | 15 --------------
 src/Symfony/Bridge/Twig/README.md                  | 15 --------------
 src/Symfony/Component/BrowserKit/README.md         |  6 ------
 src/Symfony/Component/ClassLoader/README.md        |  9 ---------
 src/Symfony/Component/Config/README.md             | 17 ----------------
 src/Symfony/Component/Console/README.md            | 15 --------------
 src/Symfony/Component/CssSelector/README.md        |  6 ------
 src/Symfony/Component/Debug/README.md              |  9 ---------
 .../Component/DependencyInjection/README.md        |  9 ---------
 src/Symfony/Component/DomCrawler/README.md         |  8 --------
 src/Symfony/Component/EventDispatcher/README.md    |  9 ---------
 src/Symfony/Component/Filesystem/README.md         |  8 --------
 src/Symfony/Component/Finder/README.md             |  8 --------
 src/Symfony/Component/Form/README.md               |  9 ---------
 src/Symfony/Component/HttpFoundation/README.md     |  9 ---------
 src/Symfony/Component/HttpKernel/README.md         |  9 ---------
 src/Symfony/Component/Intl/README.md               | 10 +---------
 src/Symfony/Component/OptionsResolver/README.md    | 11 -----------
 src/Symfony/Component/Process/README.md            |  9 ---------
 src/Symfony/Component/PropertyAccess/README.md     | 14 -------------
 src/Symfony/Component/Routing/README.md            |  9 ---------
 src/Symfony/Component/Security/README.md           | 23 ----------------------
 src/Symfony/Component/Serializer/README.md         | 15 --------------
 src/Symfony/Component/Stopwatch/README.md          | 13 ------------
 src/Symfony/Component/Templating/README.md         | 18 -----------------
 src/Symfony/Component/Translation/README.md        |  6 ------
 src/Symfony/Component/Validator/README.md          |  6 ------
 src/Symfony/Component/Yaml/README.md               |  8 --------
 31 files changed, 1 insertion(+), 342 deletions(-)
 delete mode 100644 src/Symfony/Bridge/Doctrine/README.md
 delete mode 100644 src/Symfony/Bridge/Monolog/README.md
 delete mode 100644 src/Symfony/Bridge/Propel1/README.md
 delete mode 100644 src/Symfony/Bridge/ProxyManager/README.md
 delete mode 100644 src/Symfony/Bridge/Twig/README.md
 delete mode 100644 src/Symfony/Component/Config/README.md
 delete mode 100644 src/Symfony/Component/PropertyAccess/README.md
 delete mode 100644 src/Symfony/Component/Security/README.md
 delete mode 100644 src/Symfony/Component/Serializer/README.md
 delete mode 100644 src/Symfony/Component/Stopwatch/README.md
 delete mode 100644 src/Symfony/Component/Templating/README.md

diff --git a/src/Symfony/Bridge/Doctrine/README.md b/src/Symfony/Bridge/Doctrine/README.md
deleted file mode 100644
index 2a97041..0000000
--- a/src/Symfony/Bridge/Doctrine/README.md
+++ /dev/null
@@ -1,14 +0,0 @@
-Doctrine Bridge
-===============
-
-Provides integration for [Doctrine](http://www.doctrine-project.org/) with
-various Symfony2 components.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Bridge/Doctrine/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Bridge/Monolog/README.md b/src/Symfony/Bridge/Monolog/README.md
deleted file mode 100644
index f28c85b..0000000
--- a/src/Symfony/Bridge/Monolog/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-Monolog Bridge
-==============
-
-Provides integration for Monolog with various Symfony2 components.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Bridge/Monolog/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Bridge/Propel1/README.md b/src/Symfony/Bridge/Propel1/README.md
deleted file mode 100644
index 81a3388..0000000
--- a/src/Symfony/Bridge/Propel1/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-Propel Bridge
-=============
-
-Provides integration for Propel with various Symfony2 components.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Bridge/Propel1/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Bridge/ProxyManager/README.md b/src/Symfony/Bridge/ProxyManager/README.md
deleted file mode 100644
index a266a26..0000000
--- a/src/Symfony/Bridge/ProxyManager/README.md
+++ /dev/null
@@ -1,15 +0,0 @@
-ProxyManager Bridge
-===================
-
-Provides integration for [ProxyManager][1] with various Symfony2 components.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Bridge/ProxyManager/
-    $ composer.phar install --dev
-    $ phpunit
-
-[1]: https://github.com/Ocramius/ProxyManager
diff --git a/src/Symfony/Bridge/Twig/README.md b/src/Symfony/Bridge/Twig/README.md
deleted file mode 100644
index 0e7c960..0000000
--- a/src/Symfony/Bridge/Twig/README.md
+++ /dev/null
@@ -1,15 +0,0 @@
-Twig Bridge
-===========
-
-Provides integration for [Twig](http://twig.sensiolabs.org/) with various
-Symfony2 components.
-
-Resources
----------
-
-If you want to run the unit tests, install dev dependencies before
-running PHPUnit:
-
-    $ cd path/to/Symfony/Bridge/Twig/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/BrowserKit/README.md b/src/Symfony/Component/BrowserKit/README.md
index 1b40c9f..e80df27 100644
--- a/src/Symfony/Component/BrowserKit/README.md
+++ b/src/Symfony/Component/BrowserKit/README.md
@@ -15,9 +15,3 @@ at [Goutte](https://github.com/fabpot/Goutte).
 For an implementation based on HttpKernelInterface, have a look at the
 [Client](https://github.com/symfony/symfony/blob/master/src/Symfony/Component/HttpKernel/Client.php)
 provided by the HttpKernel component.
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/BrowserKit/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/ClassLoader/README.md b/src/Symfony/Component/ClassLoader/README.md
index 3c78504..9c72c93 100644
--- a/src/Symfony/Component/ClassLoader/README.md
+++ b/src/Symfony/Component/ClassLoader/README.md
@@ -70,12 +70,3 @@ $loader = new ApcUniversalClassLoader('apc.prefix.');
 Furthermore, the component provides tools to aggregate classes into a single
 file, which is especially useful to improve performance on servers that do not
 provide byte caches.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/ClassLoader/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Config/README.md b/src/Symfony/Component/Config/README.md
deleted file mode 100644
index 1b12e89..0000000
--- a/src/Symfony/Component/Config/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-Config Component
-================
-
-Config provides the infrastructure for loading configurations from different
-data sources and optionally monitoring these data sources for changes. There
-are additional tools for validating, normalizing and handling of defaults that
-can optionally be used to convert from different formats to arrays.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Config/
-    $ composer.phar install
-    $ phpunit
-
diff --git a/src/Symfony/Component/Console/README.md b/src/Symfony/Component/Console/README.md
index 00722e6..704f91a 100644
--- a/src/Symfony/Component/Console/README.md
+++ b/src/Symfony/Component/Console/README.md
@@ -44,21 +44,6 @@ The component provides a lot of features like output coloring, input and
 output abstractions (so that you can easily unit-test your commands),
 validation, automatic help messages, ...
 
-Tests
------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Console/
-    $ composer.phar install
-    $ phpunit
-
-Third Party
------------
-
-`Resources/bin/hiddeninput.exe` is a third party binary provided within this
-component. Find sources and license at https://github.com/Seldaek/hidden-input.
-
 Resources
 ---------
 
diff --git a/src/Symfony/Component/CssSelector/README.md b/src/Symfony/Component/CssSelector/README.md
index e0212b1..9e7235c 100644
--- a/src/Symfony/Component/CssSelector/README.md
+++ b/src/Symfony/Component/CssSelector/README.md
@@ -40,9 +40,3 @@ This component is a port of the Python lxml library, which is copyright Infrae
 and distributed under the BSD license.
 
 Current code is a port of https://github.com/SimonSapin/cssselect/releases/tag/v0.7.1
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/CssSelector/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Debug/README.md b/src/Symfony/Component/Debug/README.md
index cad3893..6e9387f 100644
--- a/src/Symfony/Component/Debug/README.md
+++ b/src/Symfony/Component/Debug/README.md
@@ -33,12 +33,3 @@ from the Symfony ClassLoader component when available.
 
 This component can optionally take advantage of the features of the HttpKernel
 and HttpFoundation components.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Debug/
-    $ composer.phar install --dev
-    $ phpunit
diff --git a/src/Symfony/Component/DependencyInjection/README.md b/src/Symfony/Component/DependencyInjection/README.md
index cd170ab..d020efa 100644
--- a/src/Symfony/Component/DependencyInjection/README.md
+++ b/src/Symfony/Component/DependencyInjection/README.md
@@ -70,12 +70,3 @@ $sc->setParameter('bar.class', 'Bar');
 
 $sc->get('bar');
 ```
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/DependencyInjection/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/DomCrawler/README.md b/src/Symfony/Component/DomCrawler/README.md
index 646573f..9cc02eb 100644
--- a/src/Symfony/Component/DomCrawler/README.md
+++ b/src/Symfony/Component/DomCrawler/README.md
@@ -26,11 +26,3 @@ $crawler->addContent('<html><body><p>Hello World!</p></body></html>');
 print $crawler->filter('body > p')->text();
 ```
 
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/DomCrawler/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/EventDispatcher/README.md b/src/Symfony/Component/EventDispatcher/README.md
index c928f13..4502934 100644
--- a/src/Symfony/Component/EventDispatcher/README.md
+++ b/src/Symfony/Component/EventDispatcher/README.md
@@ -16,12 +16,3 @@ $dispatcher->addListener('event_name', function (Event $event) {
 
 $dispatcher->dispatch('event_name');
 ```
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/EventDispatcher/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Filesystem/README.md b/src/Symfony/Component/Filesystem/README.md
index 7d8a474..8d17297 100644
--- a/src/Symfony/Component/Filesystem/README.md
+++ b/src/Symfony/Component/Filesystem/README.md
@@ -35,11 +35,3 @@ $filesystem->mirror($originDir, $targetDir, \Traversable $iterator = null, $opti
 $filesystem->isAbsolutePath($file);
 ```
 
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Filesystem/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Finder/README.md b/src/Symfony/Component/Finder/README.md
index 7a96219..bdfc77d 100644
--- a/src/Symfony/Component/Finder/README.md
+++ b/src/Symfony/Component/Finder/README.md
@@ -39,14 +39,6 @@ foreach ($finder->in('s3://bucket-name') as $file) {
 }
 ```
 
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Finder/
-    $ composer.phar install
-    $ phpunit
 
 [1]: http://api.symfony.com/2.5/Symfony/Component/Finder/SplFileInfo.html
 [2]: http://php.net/splfileinfo
diff --git a/src/Symfony/Component/Form/README.md b/src/Symfony/Component/Form/README.md
index 4396ec0..b76c76b 100644
--- a/src/Symfony/Component/Form/README.md
+++ b/src/Symfony/Component/Form/README.md
@@ -15,12 +15,3 @@ https://github.com/fabpot/Silex/blob/master/src/Silex/Provider/FormServiceProvid
 Documentation:
 
 http://symfony.com/doc/2.3/book/forms.html
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Form/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/HttpFoundation/README.md b/src/Symfony/Component/HttpFoundation/README.md
index 008c158..6eca71f 100644
--- a/src/Symfony/Component/HttpFoundation/README.md
+++ b/src/Symfony/Component/HttpFoundation/README.md
@@ -45,12 +45,3 @@ if (!interface_exists('SessionHandlerInterface')) {
     $loader->registerPrefixFallback(__DIR__.'/../vendor/symfony/src/Symfony/Component/HttpFoundation/Resources/stubs');
 }
 ```
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/HttpFoundation/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/HttpKernel/README.md b/src/Symfony/Component/HttpKernel/README.md
index 8c3c32c..115af70 100644
--- a/src/Symfony/Component/HttpKernel/README.md
+++ b/src/Symfony/Component/HttpKernel/README.md
@@ -88,12 +88,3 @@ $dispatcher->addSubscriber(new ExceptionListener(function (Request $request) {
 And that's why the simple looking ``HttpKernelInterface`` is so powerful. It
 gives you access to a lot of cool features, ready to be used out of the box,
 with no efforts.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/HttpKernel/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Intl/README.md b/src/Symfony/Component/Intl/README.md
index d7f218f..e6ffec3 100644
--- a/src/Symfony/Component/Intl/README.md
+++ b/src/Symfony/Component/Intl/README.md
@@ -12,14 +12,6 @@ Documentation
 
 The documentation for the component can be found [online] [1].
 
-Resources
----------
 
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Intl/
-    $ composer.phar install --dev
-    $ phpunit
-
-[0]: http://www.php.net/manual/en/intl.setup.php
+[0]: On Debian systems install package: php5-intl
 [1]: http://symfony.com/doc/2.3/components/intl.html
diff --git a/src/Symfony/Component/OptionsResolver/README.md b/src/Symfony/Component/OptionsResolver/README.md
index 412222e..6cf4cae 100644
--- a/src/Symfony/Component/OptionsResolver/README.md
+++ b/src/Symfony/Component/OptionsResolver/README.md
@@ -102,14 +102,3 @@ class Employee extends Person
     }
 }
 ```
-
-
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/OptionsResolver/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Process/README.md b/src/Symfony/Component/Process/README.md
index 29d1cf9..84d7f75 100644
--- a/src/Symfony/Component/Process/README.md
+++ b/src/Symfony/Component/Process/README.md
@@ -40,12 +40,3 @@ $process->run(function ($type, $buffer) {
 
 That's great if you want to execute a long running command (like rsync-ing files to a
 remote server) and give feedback to the user in real-time.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Process/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/PropertyAccess/README.md b/src/Symfony/Component/PropertyAccess/README.md
deleted file mode 100644
index 79b6ebc..0000000
--- a/src/Symfony/Component/PropertyAccess/README.md
+++ /dev/null
@@ -1,14 +0,0 @@
-PropertyAccess Component
-========================
-
-PropertyAccess reads/writes values from/to object/array graphs using a simple
-string notation.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/PropertyAccess/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Routing/README.md b/src/Symfony/Component/Routing/README.md
index cd566a5..d5b19d6 100644
--- a/src/Symfony/Component/Routing/README.md
+++ b/src/Symfony/Component/Routing/README.md
@@ -25,12 +25,3 @@ $matcher = new UrlMatcher($routes, $context);
 
 $parameters = $matcher->match('/hello');
 ```
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Routing/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Security/README.md b/src/Symfony/Component/Security/README.md
deleted file mode 100644
index 53efa5e..0000000
--- a/src/Symfony/Component/Security/README.md
+++ /dev/null
@@ -1,23 +0,0 @@
-Security Component
-==================
-
-Security provides an infrastructure for sophisticated authorization systems,
-which makes it possible to easily separate the actual authorization logic from
-so called user providers that hold the users credentials. It is inspired by
-the Java Spring framework.
-
-Resources
----------
-
-Documentation:
-
-http://symfony.com/doc/2.3/book/security.html
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Security/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Serializer/README.md b/src/Symfony/Component/Serializer/README.md
deleted file mode 100644
index 5a1606c..0000000
--- a/src/Symfony/Component/Serializer/README.md
+++ /dev/null
@@ -1,15 +0,0 @@
-Serializer Component
-====================
-
-With the Serializer component its possible to handle serializing data structures,
-including object graphs, into array structures or other formats like XML and JSON.
-It can also handle deserializing XML and JSON back to object graphs.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Serializer/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Stopwatch/README.md b/src/Symfony/Component/Stopwatch/README.md
deleted file mode 100644
index 428bba6..0000000
--- a/src/Symfony/Component/Stopwatch/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-Stopwatch Component
-===================
-
-Stopwatch provides a way to profile code.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Stopwatch/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Templating/README.md b/src/Symfony/Component/Templating/README.md
deleted file mode 100644
index bde622f..0000000
--- a/src/Symfony/Component/Templating/README.md
+++ /dev/null
@@ -1,18 +0,0 @@
-Templating Component
-====================
-
-Templating provides all the tools needed to build any kind of template system.
-
-It provides an infrastructure to load template files and optionally monitor
-them for changes. It also provides a concrete template engine implementation
-using PHP with additional tools for escaping and separating templates into
-blocks and layouts.
-
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Templating/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Translation/README.md b/src/Symfony/Component/Translation/README.md
index 0eba845..932a70e 100644
--- a/src/Symfony/Component/Translation/README.md
+++ b/src/Symfony/Component/Translation/README.md
@@ -29,9 +29,3 @@ https://github.com/fabpot/Silex/blob/master/src/Silex/Provider/TranslationServic
 Documentation:
 
 http://symfony.com/doc/2.3/book/translation.html
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Translation/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Validator/README.md b/src/Symfony/Component/Validator/README.md
index 9bec225..b462fad 100644
--- a/src/Symfony/Component/Validator/README.md
+++ b/src/Symfony/Component/Validator/README.md
@@ -118,9 +118,3 @@ http://symfony.com/doc/2.3/book/validation.html
 JSR-303 Specification:
 
 http://jcp.org/en/jsr/detail?id=303
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Validator/
-    $ composer.phar install
-    $ phpunit
diff --git a/src/Symfony/Component/Yaml/README.md b/src/Symfony/Component/Yaml/README.md
index 50f9e09..f357c25 100644
--- a/src/Symfony/Component/Yaml/README.md
+++ b/src/Symfony/Component/Yaml/README.md
@@ -11,11 +11,3 @@ $array = Yaml::parse($file);
 print Yaml::dump($array);
 ```
 
-Resources
----------
-
-You can run the unit tests with the following command:
-
-    $ cd path/to/Symfony/Component/Yaml/
-    $ composer.phar install
-    $ phpunit
