From 04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 9 Jan 2020 10:55:03 +0100 Subject: phpmyadmin working --- srcs/phpmyadmin/vendor/psr/cache/CHANGELOG.md | 16 +++ srcs/phpmyadmin/vendor/psr/cache/LICENSE.txt | 19 +++ srcs/phpmyadmin/vendor/psr/cache/README.md | 9 ++ srcs/phpmyadmin/vendor/psr/cache/composer.json | 25 ++++ .../vendor/psr/cache/src/CacheException.php | 10 ++ .../vendor/psr/cache/src/CacheItemInterface.php | 105 ++++++++++++++++ .../psr/cache/src/CacheItemPoolInterface.php | 138 +++++++++++++++++++++ .../psr/cache/src/InvalidArgumentException.php | 13 ++ 8 files changed, 335 insertions(+) create mode 100644 srcs/phpmyadmin/vendor/psr/cache/CHANGELOG.md create mode 100644 srcs/phpmyadmin/vendor/psr/cache/LICENSE.txt create mode 100644 srcs/phpmyadmin/vendor/psr/cache/README.md create mode 100644 srcs/phpmyadmin/vendor/psr/cache/composer.json create mode 100644 srcs/phpmyadmin/vendor/psr/cache/src/CacheException.php create mode 100644 srcs/phpmyadmin/vendor/psr/cache/src/CacheItemInterface.php create mode 100644 srcs/phpmyadmin/vendor/psr/cache/src/CacheItemPoolInterface.php create mode 100644 srcs/phpmyadmin/vendor/psr/cache/src/InvalidArgumentException.php (limited to 'srcs/phpmyadmin/vendor/psr/cache') diff --git a/srcs/phpmyadmin/vendor/psr/cache/CHANGELOG.md b/srcs/phpmyadmin/vendor/psr/cache/CHANGELOG.md new file mode 100644 index 0000000..58ddab0 --- /dev/null +++ b/srcs/phpmyadmin/vendor/psr/cache/CHANGELOG.md @@ -0,0 +1,16 @@ +# Changelog + +All notable changes to this project will be documented in this file, in reverse chronological order by release. + +## 1.0.1 - 2016-08-06 + +### Fixed + +- Make spacing consistent in phpdoc annotations php-fig/cache#9 - chalasr +- Fix grammar in phpdoc annotations php-fig/cache#10 - chalasr +- Be more specific in docblocks that `getItems()` and `deleteItems()` take an array of strings (`string[]`) compared to just `array` php-fig/cache#8 - GrahamCampbell +- For `expiresAt()` and `expiresAfter()` in CacheItemInterface fix docblock to specify null as a valid parameters as well as an implementation of DateTimeInterface php-fig/cache#7 - GrahamCampbell + +## 1.0.0 - 2015-12-11 + +Initial stable release; reflects accepted PSR-6 specification diff --git a/srcs/phpmyadmin/vendor/psr/cache/LICENSE.txt b/srcs/phpmyadmin/vendor/psr/cache/LICENSE.txt new file mode 100644 index 0000000..b1c2c97 --- /dev/null +++ b/srcs/phpmyadmin/vendor/psr/cache/LICENSE.txt @@ -0,0 +1,19 @@ +Copyright (c) 2015 PHP Framework Interoperability Group + +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/srcs/phpmyadmin/vendor/psr/cache/README.md b/srcs/phpmyadmin/vendor/psr/cache/README.md new file mode 100644 index 0000000..c8706ce --- /dev/null +++ b/srcs/phpmyadmin/vendor/psr/cache/README.md @@ -0,0 +1,9 @@ +PSR Cache +========= + +This repository holds all interfaces defined by +[PSR-6](http://www.php-fig.org/psr/psr-6/). + +Note that this is not a Cache implementation of its own. It is merely an +interface that describes a Cache implementation. See the specification for more +details. diff --git a/srcs/phpmyadmin/vendor/psr/cache/composer.json b/srcs/phpmyadmin/vendor/psr/cache/composer.json new file mode 100644 index 0000000..e828fec --- /dev/null +++ b/srcs/phpmyadmin/vendor/psr/cache/composer.json @@ -0,0 +1,25 @@ +{ + "name": "psr/cache", + "description": "Common interface for caching libraries", + "keywords": ["psr", "psr-6", "cache"], + "license": "MIT", + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "require": { + "php": ">=5.3.0" + }, + "autoload": { + "psr-4": { + "Psr\\Cache\\": "src/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + } +} diff --git a/srcs/phpmyadmin/vendor/psr/cache/src/CacheException.php b/srcs/phpmyadmin/vendor/psr/cache/src/CacheException.php new file mode 100644 index 0000000..e27f22f --- /dev/null +++ b/srcs/phpmyadmin/vendor/psr/cache/src/CacheException.php @@ -0,0 +1,10 @@ +