Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Simple PHP Cache #

Forked from [cosenary/Simple-PHP-Cache](https://github.com/cosenary/Simple-PHP-Cache)

## About ##

A light, simple but powerful PHP5 Cache Class which uses the filesystem for caching.
Your feedback is always welcome.
A light, simple but powerful PHP5 Cache Class which uses the filesystem for caching.

## Requirements ##

Expand All @@ -17,6 +18,16 @@ If you set a new Cache name with `setCache()`, a new cache file will be generate

## Quick Start ##

Add to your composer.json:

{
"require": {
"tiagogougea/simple-php-cache": "*"
}
}

And run "composer update" or just run "composer require tiagogouvea/simple-php-cache".

### Setup Cache class ###

It's not much trouble to setup the Cache.
Expand Down
Loading