From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 27 Jul 2020 10:05:23 +0200 Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my familly --- 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 deletions(-) delete mode 100644 srcs/phpmyadmin/vendor/psr/cache/CHANGELOG.md delete mode 100644 srcs/phpmyadmin/vendor/psr/cache/LICENSE.txt delete mode 100644 srcs/phpmyadmin/vendor/psr/cache/README.md delete mode 100644 srcs/phpmyadmin/vendor/psr/cache/composer.json delete mode 100644 srcs/phpmyadmin/vendor/psr/cache/src/CacheException.php delete mode 100644 srcs/phpmyadmin/vendor/psr/cache/src/CacheItemInterface.php delete mode 100644 srcs/phpmyadmin/vendor/psr/cache/src/CacheItemPoolInterface.php delete 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 deleted file mode 100644 index 58ddab0..0000000 --- a/srcs/phpmyadmin/vendor/psr/cache/CHANGELOG.md +++ /dev/null @@ -1,16 +0,0 @@ -# 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 deleted file mode 100644 index b1c2c97..0000000 --- a/srcs/phpmyadmin/vendor/psr/cache/LICENSE.txt +++ /dev/null @@ -1,19 +0,0 @@ -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 deleted file mode 100644 index c8706ce..0000000 --- a/srcs/phpmyadmin/vendor/psr/cache/README.md +++ /dev/null @@ -1,9 +0,0 @@ -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 deleted file mode 100644 index e828fec..0000000 --- a/srcs/phpmyadmin/vendor/psr/cache/composer.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "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 deleted file mode 100644 index e27f22f..0000000 --- a/srcs/phpmyadmin/vendor/psr/cache/src/CacheException.php +++ /dev/null @@ -1,10 +0,0 @@ -