Update header comments and composer.json. Resolves #1
Gitea - aviat/banker/pipeline/head There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2020-05-07 19:00:38 -04:00
parent f31fe826b0
commit 247aedaf5a
26 changed files with 84 additions and 80 deletions

View File

@ -1,7 +1,7 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.4 * PHP version 7.4
* *

View File

@ -1,16 +1,19 @@
{ {
"name": "aviat/banker", "name": "aviat/banker",
"type": "library", "type": "library",
"description": "A caching library implementing PSR-6 (psr/cache)", "description": "A caching library implementing PSR-6 (psr/cache) and PSR-16 (psr/simple-cache)",
"keywords": [ "keywords": [
"cache", "cache",
"redis", "redis",
"memcached", "memcached",
"psr-6", "psr-6",
"psr6" "psr6",
"psr16",
"psr-16"
], ],
"provide": { "provide": {
"psr/cache": "1.0.1" "psr/cache": "1.0.1",
"psr/simple-cache": "1.0.1"
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
@ -23,14 +26,15 @@
} }
}, },
"require": { "require": {
"php": "^7.2", "php": ">=7.4",
"ext-json": "*", "ext-json": "*",
"predis/predis": "^1.1", "predis/predis": "^1.1",
"psr/log": "^1.0", "psr/log": "^1.0",
"psr/cache": "^1.0.1" "psr/cache": "^1.0.1",
"psr/simple-cache": "^1.0.1"
}, },
"require-dev": { "require-dev": {
"ext-acpu": "*", "ext-apcu": "*",
"ext-memcached": "*", "ext-memcached": "*",
"consolidation/robo": "^2.0.0", "consolidation/robo": "^2.0.0",
"monolog/monolog": "^2.0.1", "monolog/monolog": "^2.0.1",

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker

View File

@ -2,15 +2,15 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.1 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2018 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 2.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker
*/ */
namespace Aviat\Banker\Tests; namespace Aviat\Banker\Tests;

View File

@ -2,13 +2,13 @@
/** /**
* Banker * Banker
* *
* A Caching library implementing psr/cache (PSR 6) * A Caching library implementing psr/cache (PSR 6) and psr/simple-cache (PSR 16)
* *
* PHP version 7.2 * PHP version 7.4
* *
* @package Banker * @package Banker
* @author Timothy J. Warren <tim@timshomepage.net> * @author Timothy J. Warren <tim@timshomepage.net>
* @copyright 2016 - 2019 Timothy J. Warren * @copyright 2016 - 2020 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License * @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 3.0.0 * @version 3.0.0
* @link https://git.timshomepage.net/timw4mail/banker * @link https://git.timshomepage.net/timw4mail/banker