Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8ccdd51

Browse filesBrowse files
committed
minor #17519 remove obsolete apcu polyfill (Tobion)
This PR was merged into the 3.0 branch. Discussion ---------- remove obsolete apcu polyfill | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - As @gapple pointed out in #17396 > APC is PHP <=5.4, so symfony/polyfill-apcu shouldn't be a dependency on 3.0 or master Commits ------- 5bf64ea remove obsolete apcu polyfill
2 parents 1077651 + 5bf64ea commit 8ccdd51
Copy full SHA for 8ccdd51

File tree

3 files changed

+2
-5
lines changed
Filter options

3 files changed

+2
-5
lines changed

‎composer.json

Copy file name to clipboardExpand all lines: composer.json
-2Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
"doctrine/common": "~2.4",
2121
"twig/twig": "~1.23|~2.0",
2222
"psr/log": "~1.0",
23-
"symfony/security-acl": "~2.7",
24-
"symfony/polyfill-apcu": "~1.0,>=1.0.2",
2523
"symfony/polyfill-intl-icu": "~1.0",
2624
"symfony/polyfill-mbstring": "~1.0",
2725
"symfony/polyfill-php56": "~1.0",

‎src/Symfony/Component/ClassLoader/Tests/ApcClassLoaderTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/ClassLoader/Tests/ApcClassLoaderTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\ClassLoader\ClassLoader;
1616

1717
/**
18-
* @requires extension apc
18+
* @requires extension apcu
1919
*/
2020
class ApcClassLoaderTest extends \PHPUnit_Framework_TestCase
2121
{

‎src/Symfony/Component/ClassLoader/composer.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/ClassLoader/composer.json
+1-2Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
],
1818
"minimum-stability": "dev",
1919
"require": {
20-
"php": ">=5.5.9",
21-
"symfony/polyfill-apcu": "~1.0,>=1.0.2"
20+
"php": ">=5.5.9"
2221
},
2322
"require-dev": {
2423
"symfony/finder": "~2.8|~3.0"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.