From ea1d78c7c8f90ededcd50791ec004ccad44ff235 Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Fri, 3 May 2024 09:02:04 -0300 Subject: [PATCH 1/5] Update file --- CHANGELOG.md | 2 +- LICENSE.md | 18 +++++++++--------- README.md | 3 +-- UPGRADE.md | 5 ++--- 4 files changed, 13 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c03912..21bb691 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Yii Memcached Change Log +# Yii Cache Library - Memcached Handler Change Log ## 2.0.1 under development diff --git a/LICENSE.md b/LICENSE.md index fa6ef0f..c48bcea 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -5,15 +5,15 @@ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: -* Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. -* Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. -* Neither the name of Yii Software nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + * Neither the name of Yii Software nor the names of its + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT diff --git a/README.md b/README.md index 17a7bad..fb7b600 100644 --- a/README.md +++ b/README.md @@ -122,10 +122,9 @@ To work with values in a more efficient manner, batch operations should be used: - `setMultiple()` - `deleteMultiple()` -This package can be used as a cache handler for the [Yii Caching Library](https://github.com/yiisoft/cache). - ## Documentation +- This package can be used as a cache handler for the [Yii Caching Library](https://github.com/yiisoft/cache). - [Internals](docs/internals.md) If you need help or have a question, the [Yii Forum](https://forum.yiiframework.com/c/yii-3-0/63) is a good place for diff --git a/UPGRADE.md b/UPGRADE.md index 55c757a..ce2f175 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -1,4 +1,3 @@ -Upgrading Instructions -====================== +# Upgrading Instructions -Changes summary: +## Changes summary From c9b5eaa669936016b25cb55141518da4908cfa3d Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Sat, 4 May 2024 08:16:40 -0300 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb7b600..58ca600 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ a distributed applications (e.g. with several servers, load balancers, etc.). ## Installation -The package could be installed with composer: +The package could be installed with [composer](https://getcomposer.org/download/) ```shell composer require yiisoft/cache-memcached From dfc765d868e35bba051e99760525497c33adce2f Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Mon, 6 May 2024 06:59:57 -0300 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 58ca600..da30837 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ a distributed applications (e.g. with several servers, load balancers, etc.). ## Installation -The package could be installed with [composer](https://getcomposer.org/download/) +The package could be installed with [Composer](https://getcomposer.org): ```shell composer require yiisoft/cache-memcached From ef0764c5796648fef6ce5aa41e7057e2ab92a699 Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Sat, 11 May 2024 06:27:58 -0300 Subject: [PATCH 4/5] Fix docs --- README.md | 2 +- composer.json | 14 ++++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index da30837..8348ca3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

- + Yii

Yii Cache Library - Memcached Handler


diff --git a/composer.json b/composer.json index 3a6363b..efe9c77 100644 --- a/composer.json +++ b/composer.json @@ -13,12 +13,22 @@ "license": "BSD-3-Clause", "support": { "issues": "https://github.com/yiisoft/cache-memcached/issues?state=open", + "source": "https://github.com/yiisoft/cache-memcached", "forum": "https://www.yiiframework.com/forum/", "wiki": "https://www.yiiframework.com/wiki/", "irc": "ircs://irc.libera.chat:6697/yii", - "chat": "https://t.me/yii3en", - "source": "https://github.com/yiisoft/cache-memcached" + "chat": "https://t.me/yii3en" }, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/yiisoft" + }, + { + "type": "github", + "url": "https://github.com/sponsors/yiisoft" + } + ], "require": { "php": "^8.0", "ext-memcached": "*", From 9841de2d31527e8cfbe6f7d1d9f3e23f44a0e4b7 Mon Sep 17 00:00:00 2001 From: Sergei Predvoditelev Date: Sat, 18 May 2024 07:57:21 +0300 Subject: [PATCH 5/5] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8348ca3..69b04b4 100644 --- a/README.md +++ b/README.md @@ -122,9 +122,10 @@ To work with values in a more efficient manner, batch operations should be used: - `setMultiple()` - `deleteMultiple()` +This package can be used as a cache handler for the [Yii Caching Library](https://github.com/yiisoft/cache). + ## Documentation -- This package can be used as a cache handler for the [Yii Caching Library](https://github.com/yiisoft/cache). - [Internals](docs/internals.md) If you need help or have a question, the [Yii Forum](https://forum.yiiframework.com/c/yii-3-0/63) is a good place for