From 8ea537123d1cef38f25f9fbe92e3a9c0f89de55a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 13 Dec 2022 20:08:43 +0300 Subject: move af_readability out of master tree --- .../vendor/psr/http-factory/.gitignore | 2 - .../vendor/psr/http-factory/.pullapprove.yml | 7 ---- .../af_readability/vendor/psr/http-factory/LICENSE | 21 ---------- .../vendor/psr/http-factory/README.md | 10 ----- .../vendor/psr/http-factory/composer.json | 35 ----------------- .../http-factory/src/RequestFactoryInterface.php | 18 --------- .../http-factory/src/ResponseFactoryInterface.php | 18 --------- .../src/ServerRequestFactoryInterface.php | 24 ------------ .../http-factory/src/StreamFactoryInterface.php | 45 ---------------------- .../src/UploadedFileFactoryInterface.php | 34 ---------------- .../psr/http-factory/src/UriFactoryInterface.php | 17 -------- 11 files changed, 231 deletions(-) delete mode 100644 plugins/af_readability/vendor/psr/http-factory/.gitignore delete mode 100644 plugins/af_readability/vendor/psr/http-factory/.pullapprove.yml delete mode 100644 plugins/af_readability/vendor/psr/http-factory/LICENSE delete mode 100644 plugins/af_readability/vendor/psr/http-factory/README.md delete mode 100644 plugins/af_readability/vendor/psr/http-factory/composer.json delete mode 100644 plugins/af_readability/vendor/psr/http-factory/src/RequestFactoryInterface.php delete mode 100644 plugins/af_readability/vendor/psr/http-factory/src/ResponseFactoryInterface.php delete mode 100644 plugins/af_readability/vendor/psr/http-factory/src/ServerRequestFactoryInterface.php delete mode 100644 plugins/af_readability/vendor/psr/http-factory/src/StreamFactoryInterface.php delete mode 100644 plugins/af_readability/vendor/psr/http-factory/src/UploadedFileFactoryInterface.php delete mode 100644 plugins/af_readability/vendor/psr/http-factory/src/UriFactoryInterface.php (limited to 'plugins/af_readability/vendor/psr/http-factory') diff --git a/plugins/af_readability/vendor/psr/http-factory/.gitignore b/plugins/af_readability/vendor/psr/http-factory/.gitignore deleted file mode 100644 index d8a7996ab..000000000 --- a/plugins/af_readability/vendor/psr/http-factory/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -composer.lock -vendor/ diff --git a/plugins/af_readability/vendor/psr/http-factory/.pullapprove.yml b/plugins/af_readability/vendor/psr/http-factory/.pullapprove.yml deleted file mode 100644 index 8cf081942..000000000 --- a/plugins/af_readability/vendor/psr/http-factory/.pullapprove.yml +++ /dev/null @@ -1,7 +0,0 @@ -extends: default -reviewers: - - - name: contributors - required: 1 - teams: - - http-factory-contributors diff --git a/plugins/af_readability/vendor/psr/http-factory/LICENSE b/plugins/af_readability/vendor/psr/http-factory/LICENSE deleted file mode 100644 index 3f1559b2a..000000000 --- a/plugins/af_readability/vendor/psr/http-factory/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2018 PHP-FIG - -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/plugins/af_readability/vendor/psr/http-factory/README.md b/plugins/af_readability/vendor/psr/http-factory/README.md deleted file mode 100644 index 41d362a62..000000000 --- a/plugins/af_readability/vendor/psr/http-factory/README.md +++ /dev/null @@ -1,10 +0,0 @@ -HTTP Factories -============== - -This repository holds all interfaces related to [PSR-17 (HTTP Message Factories)][psr-17]. -Please refer to the specification for a description. - -You can find implementations of the specification by looking for packages providing the -[psr/http-factory-implementation](https://packagist.org/providers/psr/http-factory-implementation) virtual package. - -[psr-17]: https://www.php-fig.org/psr/psr-17/ diff --git a/plugins/af_readability/vendor/psr/http-factory/composer.json b/plugins/af_readability/vendor/psr/http-factory/composer.json deleted file mode 100644 index af62b290f..000000000 --- a/plugins/af_readability/vendor/psr/http-factory/composer.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "name": "psr/http-factory", - "description": "Common interfaces for PSR-7 HTTP message factories", - "keywords": [ - "psr", - "psr-7", - "psr-17", - "http", - "factory", - "message", - "request", - "response" - ], - "license": "MIT", - "authors": [ - { - "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" - } - ], - "require": { - "php": ">=7.0.0", - "psr/http-message": "^1.0" - }, - "autoload": { - "psr-4": { - "Psr\\Http\\Message\\": "src/" - } - }, - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - } -} diff --git a/plugins/af_readability/vendor/psr/http-factory/src/RequestFactoryInterface.php b/plugins/af_readability/vendor/psr/http-factory/src/RequestFactoryInterface.php deleted file mode 100644 index cb39a08bf..000000000 --- a/plugins/af_readability/vendor/psr/http-factory/src/RequestFactoryInterface.php +++ /dev/null @@ -1,18 +0,0 @@ -