                   __________________           __       
                  / ____/_  __/ ____/___ ______/ /_  ___ 
                 / /_    / / / /   / __ `/ ___/ __ \/ _ \
                / __/   / / / /___/ /_/ / /__/ / / /  __/
               /_/     /_/  \____/\__,_/\___/_/ /_/\___/
                      (c) Fugitive Thought 2008

PROJECT WEBSITE
---------------
http://www.fugitivethought.com/projects/FTCache

FOLDER STRUCTURE
----------------
/              - root folder, contains license and readme
/docs          - PHPdocs generated from the code
/src           - source code for the project, what you will actually need
/tests         - unit test suite using Simple Test


TEST SUITE
----------
The test suite is included in the system for a couple of reasons. Firstly,
we like to show that we have done extensive testing of the systems and
that they work. Secondly, the test cases provide a number of good examples
for how the library works and what to expect from each and every aspect of
it. Thirdly, this suite allows you to easily test any changes you make to
the library or to highlight any bugs that future changes will generate. If
you make a new module for the library, the test suite will allow you to be
sure that your module does not break any existing functionality. A lot of
times if the library is designed to be expanded, we will have included
some Test classes that you can run on your own plugins to make sure that
they fit any of the requirements of a plugin.

To run the test suite, run the tests.php file in the tests folder.


INSTALLATION
------------
You only need the contents of the src folder to actually use the library.
If you want to save disk space, copy the contents of the entire src folder
to wherever you are going to use the library, rename it appropriately, and
then include the root file in it.

In this case, that file would be: "src/FTcache.php"