Update header comments and composer.json. Resolves #1
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
This commit is contained in:
parent
f31fe826b0
commit
247aedaf5a
@ -1,7 +1,7 @@
|
||||
/**
|
||||
* 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
|
||||
*
|
||||
|
@ -1,16 +1,19 @@
|
||||
{
|
||||
"name": "aviat/banker",
|
||||
"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": [
|
||||
"cache",
|
||||
"redis",
|
||||
"memcached",
|
||||
"psr-6",
|
||||
"psr6"
|
||||
"psr6",
|
||||
"psr16",
|
||||
"psr-16"
|
||||
],
|
||||
"provide": {
|
||||
"psr/cache": "1.0.1"
|
||||
"psr/cache": "1.0.1",
|
||||
"psr/simple-cache": "1.0.1"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
@ -23,14 +26,15 @@
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2",
|
||||
"php": ">=7.4",
|
||||
"ext-json": "*",
|
||||
"predis/predis": "^1.1",
|
||||
"psr/log": "^1.0",
|
||||
"psr/cache": "^1.0.1"
|
||||
"psr/cache": "^1.0.1",
|
||||
"psr/simple-cache": "^1.0.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"ext-acpu": "*",
|
||||
"ext-apcu": "*",
|
||||
"ext-memcached": "*",
|
||||
"consolidation/robo": "^2.0.0",
|
||||
"monolog/monolog": "^2.0.1",
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
@ -2,15 +2,15 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 2.0.0
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
*/
|
||||
namespace Aviat\Banker\Tests;
|
||||
|
@ -2,13 +2,13 @@
|
||||
/**
|
||||
* 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
|
||||
* @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
|
||||
* @version 3.0.0
|
||||
* @link https://git.timshomepage.net/timw4mail/banker
|
||||
|
Loading…
Reference in New Issue
Block a user