From 253154c61a8027b46ab21213fdc81d3a19fe62b8 Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Fri, 3 May 2024 09:11:27 -0300 Subject: [PATCH 1/5] Update file --- CHANGELOG.md | 3 +-- LICENSE.md | 18 +++++++++--------- README.md | 17 ++++++++--------- 3 files changed, 18 insertions(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 43a597a..ce3f537 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,9 @@ -# Yii ApcuCache Change Log +# Yii Cache Library - APCu Handler Change Log ## 1.1.1 under development - no changes in this release. - ## 1.1.0 April 24, 2024 - Chg #28: Raise the minimum `psr/simple-cache` version to `^2.0|^3.0` and the minimum PHP version to `^8.0` (@dehbka) diff --git a/LICENSE.md b/LICENSE.md index 9794717..a82fd97 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 e83cd95..6dd8ae8 100644 --- a/README.md +++ b/README.md @@ -72,15 +72,21 @@ 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 that. You may also check out other [Yii Community Resources](https://www.yiiframework.com/community). +## License + +The Yii Cache Library - APCu Handler is free software. It is released under the terms of the BSD License. +Please see [`LICENSE`](./LICENSE.md) for more information. + +Maintained by [Yii Software](https://www.yiiframework.com/). + ## Support the project [![Open Collective](https://img.shields.io/badge/Open%20Collective-sponsor-7eadf1?logo=open%20collective&logoColor=7eadf1&labelColor=555555)](https://opencollective.com/yiisoft) @@ -92,10 +98,3 @@ that. You may also check out other [Yii Community Resources](https://www.yiifram [![Telegram](https://img.shields.io/badge/telegram-join-1DA1F2?style=flat&logo=telegram)](https://t.me/yii3en) [![Facebook](https://img.shields.io/badge/facebook-join-1DA1F2?style=flat&logo=facebook&logoColor=ffffff)](https://www.facebook.com/groups/yiitalk) [![Slack](https://img.shields.io/badge/slack-join-1DA1F2?style=flat&logo=slack)](https://yiiframework.com/go/slack) - -## License - -The Yii Cache Library - APCu Handler is free software. It is released under the terms of the BSD License. -Please see [`LICENSE`](./LICENSE.md) for more information. - -Maintained by [Yii Software](https://www.yiiframework.com/). From 366bf7ce956e632193a9802048e400cc4b045a8e Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Sat, 4 May 2024 05:55:20 -0300 Subject: [PATCH 2/5] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6dd8ae8..8ead75a 100644 --- a/README.md +++ b/README.md @@ -72,9 +72,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 From 5bf99d0ea3cfee7d4539799b6f57a15280b272a5 Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Sat, 4 May 2024 08:16:10 -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 8ead75a..7b24882 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ centralized thick application (e.g. one server, no dedicated 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-apcu From 33c749e4e3aed45257de57db45e54bb555a5c76b Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Mon, 6 May 2024 06:59:34 -0300 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7b24882..97ada20 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ centralized thick application (e.g. one server, no dedicated 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-apcu From 89308d8aa2651ae4f2c6874299d51f1bc61636f8 Mon Sep 17 00:00:00 2001 From: Luiz Marin <67489841+luizcmarin@users.noreply.github.com> Date: Sat, 11 May 2024 06:22:24 -0300 Subject: [PATCH 5/5] Fix docs --- README.md | 4 ++-- composer.json | 14 ++++++++++++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 97ada20..5a28ea9 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

- + Yii

Yii Cache Library - APCu Handler


@@ -78,7 +78,7 @@ This package can be used as a cache handler for the [Yii Caching Library](https: - [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 +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 that. You may also check out other [Yii Community Resources](https://www.yiiframework.com/community). ## License diff --git a/composer.json b/composer.json index 1f87fa0..63e417b 100644 --- a/composer.json +++ b/composer.json @@ -13,12 +13,22 @@ "license": "BSD-3-Clause", "support": { "issues": "https://github.com/yiisoft/cache-apcu/issues?state=open", + "source": "https://github.com/yiisoft/cache-apcu", "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-apcu" + "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-apcu": "*",