Move into nested docroot
This commit is contained in:
parent
83a0d3a149
commit
c8b70abde9
13405 changed files with 0 additions and 0 deletions
19
web/vendor/symfony/polyfill-apcu/LICENSE
vendored
Normal file
19
web/vendor/symfony/polyfill-apcu/LICENSE
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
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.
|
12
web/vendor/symfony/polyfill-apcu/README.md
vendored
Normal file
12
web/vendor/symfony/polyfill-apcu/README.md
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
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).
|
38
web/vendor/symfony/polyfill-apcu/bootstrap.php
vendored
Normal file
38
web/vendor/symfony/polyfill-apcu/bootstrap.php
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
<?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);
|
||||
}
|
||||
}
|
||||
}
|
30
web/vendor/symfony/polyfill-apcu/composer.json
vendored
Normal file
30
web/vendor/symfony/polyfill-apcu/composer.json
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"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.3-dev"
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue