From 0e89f100a6ddbd4a9711eefa99a0cff7b2f07de7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Renan=20Gon=C3=A7alves?= Date: Tue, 3 Jan 2017 12:06:58 +0100 Subject: [PATCH] Prepare for initial release. --- .gitattributes | 3 +++ CHANGELOG.md | 5 +++++ LICENSE | 19 +++++++++++++++++++ README.md | 9 +++++++-- composer.json | 9 +++++++++ 5 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 .gitattributes create mode 100644 CHANGELOG.md create mode 100644 LICENSE diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d660202 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,3 @@ +/.* export-ignore +/tests export-ignore +/phpunit.xml export-ignore diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c5aa421 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## 1.0.0 - 2017-01-03 + +- Initial release diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..1215251 --- /dev/null +++ b/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2015 Renan Gonçalves + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md index 8d9e35e..7bff199 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,7 @@ -# cakephp-predis -CakePHP 3.x Predis Cache Engine +# CakePHP 3.x Predis Cache Engine + +[![Build Status](https://travis-ci.org/renan/cakephp-predis.svg?branch=master)](https://travis-ci.org/renan/cakephp-predis) +[![Latest Stable Version](https://poser.pugx.org/renan/cakephp-predis/v/stable)](https://packagist.org/packages/renan/cakephp-predis) +[![License](https://poser.pugx.org/renan/cakephp-predis/license)](https://packagist.org/packages/renan/cakephp-predis) + +An implementation of CakePHP Cache Engine using Predis client, a native PHP implementation for Redis. diff --git a/composer.json b/composer.json index 333a17a..99f8bf0 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,15 @@ { "name": "renan/cakephp-predis", "description": "CakePHP 3.x Predis Cache Engine", + "keywords": ["cake", "cakephp", "cache", "redis", "predis"], + "homepage": "https://github.com/renan/cakephp-predis", + "license": "MIT", + "authors": [ + { + "name": "Renan Gonçalves", + "email": "renan.saddam@gmail.com" + } + ], "autoload": { "psr-4": { "Renan\\Cake\\Predis\\": "src/"