summaryrefslogtreecommitdiff
path: root/vendor/symfony/polyfill-apcu
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2016-12-24 11:51:25 +0000
committerGreg Roach <fisharebest@gmail.com>2016-12-24 11:51:25 +0000
commit015c99a27bc294c090397a70f40eb92112b22bf7 (patch)
treee22fd03d1ae465fe180662cc19fa3092b4fde55d /vendor/symfony/polyfill-apcu
parent2118c0e3314864fd87a9f7e14cf8615480d51d10 (diff)
downloadwebtrees-015c99a27bc294c090397a70f40eb92112b22bf7.tar.gz
webtrees-015c99a27bc294c090397a70f40eb92112b22bf7.tar.bz2
webtrees-015c99a27bc294c090397a70f40eb92112b22bf7.zip
Remove PHP 5.3 workaround
Diffstat (limited to 'vendor/symfony/polyfill-apcu')
-rw-r--r--vendor/symfony/polyfill-apcu/LICENSE19
-rw-r--r--vendor/symfony/polyfill-apcu/README.md12
-rw-r--r--vendor/symfony/polyfill-apcu/bootstrap.php38
-rw-r--r--vendor/symfony/polyfill-apcu/composer.json30
4 files changed, 0 insertions, 99 deletions
diff --git a/vendor/symfony/polyfill-apcu/LICENSE b/vendor/symfony/polyfill-apcu/LICENSE
deleted file mode 100644
index 0564c5a9b7..0000000000
--- a/vendor/symfony/polyfill-apcu/LICENSE
+++ /dev/null
@@ -1,19 +0,0 @@
-Copyright (c) 2016 Fabien Potencier
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is furnished
-to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
diff --git a/vendor/symfony/polyfill-apcu/README.md b/vendor/symfony/polyfill-apcu/README.md
deleted file mode 100644
index e614bcab51..0000000000
--- a/vendor/symfony/polyfill-apcu/README.md
+++ /dev/null
@@ -1,12 +0,0 @@
-Symfony Polyfill / APCu
-========================
-
-This component provides `apcu_*` functions and the `APCUIterator` class to users of the legacy APC extension.
-
-More information can be found in the
-[main Polyfill README](https://github.com/symfony/polyfill/blob/master/README.md).
-
-License
-=======
-
-This library is released under the [MIT license](LICENSE).
diff --git a/vendor/symfony/polyfill-apcu/bootstrap.php b/vendor/symfony/polyfill-apcu/bootstrap.php
deleted file mode 100644
index a5682af55d..0000000000
--- a/vendor/symfony/polyfill-apcu/bootstrap.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-if (!extension_loaded('apc')) {
- return;
-}
-
-if (!function_exists('apcu_add')) {
- function apcu_add($key, $var = null, $ttl = 0) { return apc_add($key, $var, $ttl); }
- function apcu_cache_info($limited = false) { return apc_cache_info('user', $limited); }
- function apcu_cas($key, $old, $new) { return apc_cas($key, $old, $new); }
- function apcu_clear_cache() { return apc_clear_cache('user'); }
- function apcu_dec($key, $step = 1, &$success = false) { return apc_dec($key, $step, $success); }
- function apcu_delete($key) { return apc_delete($key); }
- function apcu_exists($keys) { return apc_exists($keys); }
- function apcu_fetch($key, &$success = false) { return apc_fetch($key, $success); }
- function apcu_inc($key, $step = 1, &$success = false) { return apc_inc($key, $step, $success); }
- function apcu_sma_info($limited = false) { return apc_sma_info($limited); }
- function apcu_store($key, $var = null, $ttl = 0) { return apc_store($key, $var, $ttl); }
-}
-
-if (!class_exists('APCUIterator', false) && class_exists('APCIterator', false)) {
- class APCUIterator extends APCIterator
- {
- public function __construct($search = null, $format = APC_ITER_ALL, $chunk_size = 100, $list = APC_LIST_ACTIVE)
- {
- parent::__construct('user', $search, $format, $chunk_size, $list);
- }
- }
-}
diff --git a/vendor/symfony/polyfill-apcu/composer.json b/vendor/symfony/polyfill-apcu/composer.json
deleted file mode 100644
index 38f0ebf679..0000000000
--- a/vendor/symfony/polyfill-apcu/composer.json
+++ /dev/null
@@ -1,30 +0,0 @@
-{
- "name": "symfony/polyfill-apcu",
- "type": "library",
- "description": "Symfony polyfill backporting apcu_* functions to lower PHP versions",
- "keywords": ["polyfill", "shim", "compatibility", "portable", "apcu"],
- "homepage": "https://symfony.com",
- "license": "MIT",
- "authors": [
- {
- "name": "Nicolas Grekas",
- "email": "p@tchwork.com"
- },
- {
- "name": "Symfony Community",
- "homepage": "https://symfony.com/contributors"
- }
- ],
- "require": {
- "php": ">=5.3.3"
- },
- "autoload": {
- "files": [ "bootstrap.php" ]
- },
- "minimum-stability": "dev",
- "extra": {
- "branch-alias": {
- "dev-master": "1.1-dev"
- }
- }
-}