diff --git a/ConnectionInterface.php b/ConnectionInterface.php index 96faeea..eda7f7e 100644 --- a/ConnectionInterface.php +++ b/ConnectionInterface.php @@ -6,7 +6,7 @@ * @copyright 2013 Common Api. All rights reserved. * @license http://www.opensource.org/licenses/mit-license.html MIT License */ -namespace Api\Filesystem; +namespace CommonApi\Filesystem; /** * Filesystem Connection Interface diff --git a/FilesystemInterface.php b/FilesystemInterface.php index 4527d98..0593f2a 100644 --- a/FilesystemInterface.php +++ b/FilesystemInterface.php @@ -6,7 +6,7 @@ * @copyright 2013 Common Api. All rights reserved. * @license http://www.opensource.org/licenses/mit-license.html MIT License */ -namespace Api\Filesystem; +namespace CommonApi\Filesystem; /** * Filesystem Adapter Interface diff --git a/composer.json b/composer.json index 3f3621c..313f677 100644 --- a/composer.json +++ b/composer.json @@ -1,17 +1,24 @@ { - "name": "api/filesystem", - "description": "Common API for Filesystem", + "name": "commonapi/filesystem", + "description": "Common Filesystem Api Interface", "keywords": ["api", "CommonApi", "filesystem"], + "homepage": "https://github.com/CommonApi/Filesystem", + "type": "api", "license": "MIT", "authors": [ { "name": "AmyStephen", - "homepage": "http://Molajo.org/" + "filesystem": "AmyStephen@gmail.com", + "homepage": "http://Molajo.org" } ], + "require": { + "php": ">=5.3.10", + "commonapi/exception": ">=0.1" + }, "autoload": { "psr-0": { - "Api\\Filesystem\\": "" + "CommonApi\\Filesystem\\": "" } } }