From 3da6148aebe925da5cec09bf1b7331cd7ff7fb86 Mon Sep 17 00:00:00 2001 From: ve3 Date: Thu, 12 Dec 2024 11:39:41 +0700 Subject: [PATCH] v3.0.3 --- .gitignore | 2 +- composer.json | 24 ------------------------ src/SimpleCache.php | 4 ++-- vendor/psr/simple-cache/composer.json | 25 +++++++++++++++++++++++++ 4 files changed, 28 insertions(+), 27 deletions(-) delete mode 100644 composer.json create mode 100644 vendor/psr/simple-cache/composer.json diff --git a/.gitignore b/.gitignore index 65111ba..c13bdee 100644 --- a/.gitignore +++ b/.gitignore @@ -28,7 +28,7 @@ $RECYCLE.BIN/ cache/ cache/* # composer.json for development only. -composer.json +./composer.json # unit tests cache file. .phpunit.result.cache .phpunit.cache \ No newline at end of file diff --git a/composer.json b/composer.json deleted file mode 100644 index 9a011be..0000000 --- a/composer.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "rundiz/simple-cache", - "type": "library", - "description": "The simple and easy PHP cache drivers for cache any PHP data type.", - "keywords": ["cache", "php cache", "filesystem cache", "file system cache", "APC", "APCu", "Memcache", "Memcached"], - "license": "MIT", - "authors": [ - { - "name": "Vee W.", - "email": "kawewong@gmail.com", - "homepage": "http://rundiz.com", - "role": "Developer" - } - ], - "require": { - "php": ">=7.0", - "psr/simple-cache": "^1.0" - }, - "autoload": { - "psr-4": { - "Rundiz\\SimpleCache\\" : "src" - } - } -} diff --git a/src/SimpleCache.php b/src/SimpleCache.php index e75ae29..b7c4e12 100644 --- a/src/SimpleCache.php +++ b/src/SimpleCache.php @@ -11,13 +11,13 @@ * Rundiz SimpleCache * * @since 3.0 - * @version 3.0.2 + * @version 3.0.3 */ class SimpleCache { - const VERSION = '3.0.2'; + const VERSION = '3.0.3'; } diff --git a/vendor/psr/simple-cache/composer.json b/vendor/psr/simple-cache/composer.json new file mode 100644 index 0000000..2978fa5 --- /dev/null +++ b/vendor/psr/simple-cache/composer.json @@ -0,0 +1,25 @@ +{ + "name": "psr/simple-cache", + "description": "Common interfaces for simple caching", + "keywords": ["psr", "psr-16", "cache", "simple-cache", "caching"], + "license": "MIT", + "authors": [ + { + "name": "PHP-FIG", + "homepage": "http://www.php-fig.org/" + } + ], + "require": { + "php": ">=5.3.0" + }, + "autoload": { + "psr-4": { + "Psr\\SimpleCache\\": "src/" + } + }, + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + } +}