MySQL Fabric Adaptor for Doctrine DBAL

This package includes an Adaptor for using Doctrine DBAL's sharding
infrastructure with MySQL Fabric.

This particular copy of the software is released under the version 2 of the 
GNU General Public License.

Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.

License information can be found in the COPYING file.

For installation instructions please refer to the Doctrine DBAL and MySQL Fabric
documentation firstly. Thius library builds upon the PECL myslqnd_ms package
including MySQL Fabric support.

This package is prepared for being installed using Composer. If your choice is
to install using Composer please add the following to your project's
composer.json file:

	{
        	"repositories": [
		{
			"type": "artifact",
			"url": "/etc/mysql-fabric-doctrine-0.4.0.zip"
		}
		],
		"require": {
			"mysql/mysqlfabric-doctrine": "*"
		},
		"minimum-stability": "dev"
	}

If you are not using Composer this file followsthe PSR-0 file structure, so 
after extracting the package a PSR-0 compliant autoloader can be configured
to search for the \MySQL namespace within the src directory.

When not using a PSR-0-compliant autolaoder you have to include the files from
src/ manually after extracting the package.

A usage example can be found in the example directory of this package.

