Skip to content

Commit

Permalink
raised the minimum version of PHP to 5.3.4 (closes #3856)
Browse files Browse the repository at this point in the history
We've raised the minimum version of PHP because of a PHP
bug before 5.3.4:

https://bugs.php.net/bug.php?id=52083
https://bugs.php.net/bug.php?id=50027
  • Loading branch information
fabpot committed Jul 13, 2012
1 parent a798ff1 commit 2dcc448
Show file tree
Hide file tree
Showing 38 changed files with 35 additions and 42 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -16,7 +16,7 @@ to high traffic ones like Dailymotion or Yahoo! Answers.
Requirements
------------

Symfony2 is only supported on PHP 5.3.3 and up.
Symfony2 is only supported on PHP 5.3.4 and up.

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"doctrine/common": ">2.2,<2.4-dev",
"twig/twig": ">=1.8,<2.0-dev"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Bridge/Doctrine/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"doctrine/common": ">=2.2,<2.4-dev"
},
"suggest": {
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Bridge/Monolog/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"symfony/http-kernel": "self.version",
"monolog/monolog": "1.*"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Bridge/Propel1/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"symfony/http-foundation": "self.version",
"symfony/http-kernel": "self.version",
"symfony/form": "self.version",
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Bridge/Swiftmailer/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"swiftmailer/swiftmailer": ">=4.2.0,<4.3-dev"
},
"suggest": {
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Bridge/Twig/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"twig/twig": ">=1.8,<2.0-dev"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Bundle/FrameworkBundle/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"symfony/dependency-injection" : "self.version",
"symfony/config" : "self.version",
"symfony/event-dispatcher": "self.version",
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Bundle/SecurityBundle/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"symfony/security": "self.version"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Bundle/TwigBundle/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"symfony/twig-bridge": "self.version"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Bundle/WebProfilerBundle/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"symfony/twig-bundle": "self.version"
},
"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/BrowserKit/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"symfony/dom-crawler": "2.1.*"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/ClassLoader/composer.json
Expand Up @@ -17,7 +17,7 @@
],
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"require-dev": {
"symfony/finder": "2.1.*"
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Config/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Config": "" }
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Console/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Console": "" }
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/CssSelector/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\CssSelector": "" }
Expand Down
Expand Up @@ -12,13 +12,9 @@
namespace Symfony\Component\DependencyInjection\Tests\Compiler;

use Symfony\Component\DependencyInjection\Reference;

use Symfony\Component\DependencyInjection\Compiler\CheckCircularReferencesPass;

use Symfony\Component\DependencyInjection\Compiler\AnalyzeServiceReferencesPass;

use Symfony\Component\DependencyInjection\Compiler\Compiler;

use Symfony\Component\DependencyInjection\ContainerBuilder;

class CheckCircularReferencesPassTest extends \PHPUnit_Framework_TestCase
Expand Down
Expand Up @@ -12,7 +12,6 @@
namespace Symfony\Component\DependencyInjection\Tests\Compiler;

use Symfony\Component\DependencyInjection\Definition;

use Symfony\Component\DependencyInjection\Compiler\CheckExceptionOnInvalidReferenceBehaviorPass;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\DependencyInjection\ContainerBuilder;
Expand Down
Expand Up @@ -12,7 +12,6 @@
namespace Symfony\Component\DependencyInjection\Tests\Compiler;

use Symfony\Component\DependencyInjection\Scope;

use Symfony\Component\DependencyInjection\Compiler\CheckReferenceValidityPass;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Reference;
Expand Down
Expand Up @@ -12,7 +12,6 @@
namespace Symfony\Component\DependencyInjection\Tests\Compiler;

use Symfony\Component\DependencyInjection\Scope;

use Symfony\Component\DependencyInjection\Definition;
use Symfony\Component\DependencyInjection\Compiler\AnalyzeServiceReferencesPass;
use Symfony\Component\DependencyInjection\Compiler\Compiler;
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/DependencyInjection/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"require-dev": {
"symfony/yaml": "2.1.*",
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/DomCrawler/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"require-dev": {
"symfony/css-selector": "2.1.*"
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/EventDispatcher/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"require-dev": {
"symfony/dependency-injection": "2.1.*"
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Filesystem/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Filesystem": "" }
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Finder/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Finder": "" }
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Form/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"symfony/event-dispatcher": "2.1.*",
"symfony/locale": "2.1.*",
"symfony/options-resolver": "2.1.*"
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/HttpFoundation/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": {
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/HttpKernel/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"symfony/event-dispatcher": "2.1.*",
"symfony/http-foundation": "2.1.*"
},
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/Locale/composer.json
Expand Up @@ -16,10 +16,10 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"suggest": {
"ext-intl": ">=5.3.3"
"ext-intl": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Locale": "" }
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/OptionsResolver/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\OptionsResolver": "" }
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Process/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Process": "" }
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Routing/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"require-dev": {
"symfony/config": "2.1.*",
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Security/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3",
"php": ">=5.3.4",
"symfony/event-dispatcher": "2.1.*",
"symfony/http-foundation": "2.1.*",
"symfony/http-kernel": "2.1.*"
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Serializer/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Serializer": "" }
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Templating/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Templating": "" }
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Translation/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"require-dev": {
"symfony/config": "2.1.*",
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Validator/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"require-dev": {
"symfony/http-foundation": "2.1.*",
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Yaml/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.3.4"
},
"autoload": {
"psr-0": { "Symfony\\Component\\Yaml": "" }
Expand Down

0 comments on commit 2dcc448

Please sign in to comment.