summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Schultze <webmaster@tubo-world.de>2015-10-30 17:48:58 +0100
committerTobias Schultze <webmaster@tubo-world.de>2015-10-30 17:48:58 +0100
commit40a25d2e48d36694d5473406f6e1c708cf8fc6a0 (patch)
tree6b3961a19370cd75920f96b0c71611ce529c0734
parentc32d7d62c462831229f1e8a4002bfd4841be17d4 (diff)
parenta3133bb7defde9956068ff3e743b0e28db48e277 (diff)
downloadsymfony-security-40a25d2e48d36694d5473406f6e1c708cf8fc6a0.zip
symfony-security-40a25d2e48d36694d5473406f6e1c708cf8fc6a0.tar.gz
symfony-security-40a25d2e48d36694d5473406f6e1c708cf8fc6a0.tar.bz2
feature #16381 remove polyfills for unsupported php versions (Tobion)
This PR was merged into the 3.0-dev branch. Discussion ---------- remove polyfills for unsupported php versions | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Remove obsolete polyfills in master as introduced in #16317 Commits ------- 78512cc remove polyfills for unsupported php versions
-rw-r--r--Core/composer.json2
-rw-r--r--Guard/composer.json2
-rw-r--r--composer.json3
3 files changed, 2 insertions, 5 deletions
diff --git a/Core/composer.json b/Core/composer.json
index 28230f0..d25400f 100644
--- a/Core/composer.json
+++ b/Core/composer.json
@@ -17,9 +17,7 @@
],
"require": {
"php": ">=5.5.9",
- "symfony/polyfill-php55": "~1.0",
"symfony/polyfill-php56": "~1.0",
- "symfony/polyfill-php70": "~1.0",
"symfony/polyfill-util": "~1.0"
},
"require-dev": {
diff --git a/Guard/composer.json b/Guard/composer.json
index d2a09b9..68f5ac3 100644
--- a/Guard/composer.json
+++ b/Guard/composer.json
@@ -16,7 +16,7 @@
}
],
"require": {
- "php": ">=5.3.9",
+ "php": ">=5.5.9",
"symfony/security-core": "~2.8|~3.0",
"symfony/security-http": "~2.8|~3.0"
},
diff --git a/composer.json b/composer.json
index a6039e3..1921bdd 100644
--- a/composer.json
+++ b/composer.json
@@ -20,11 +20,10 @@
"symfony/event-dispatcher": "~2.8|~3.0",
"symfony/http-foundation": "~2.8|~3.0",
"symfony/http-kernel": "~2.8|~3.0",
- "symfony/polyfill-php55": "~1.0",
"symfony/polyfill-php56": "~1.0",
"symfony/polyfill-php70": "~1.0",
"symfony/polyfill-util": "~1.0",
- "symfony/property-access": "~2.8|~3.0",
+ "symfony/property-access": "~2.8|~3.0"
},
"replace": {
"symfony/security-core": "self.version",