diff --git a/README.md b/README.md index 1155927..4504080 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ PPI Bower Module [@ppi]: http://ppi.io/ "PPI Framework - The PHP Meta Framework!" [@bower]: http://bower.io/ "A package manager for the web" -[PPI][@ppi] module to manage web assets with [Bower][@bower]. +[PPI2][@ppi] module to manage web assets with [Bower][@bower]. diff --git a/composer.json b/composer.json index b540472..753e0a9 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,11 @@ "authors": [ { "name": "Vítor Brandão", - "email": "vitor@noiselabs.org" + "email": "vitor@ppi.io" + }, + { + "name": "Paul Dragoonis", + "email": "paul@ppi.io" } ], "support": { @@ -15,11 +19,20 @@ "issues": "https://github.com/ppi/ppi-bower-module/issues" }, "require": { - "ppi/framework": "dev-2.1" + "ppi/framework": "dev-master", + "symfony/process": "~2.6" + }, + "require-dev":{ + "phpunit/phpunit": "3.7.*" + }, + "config": { + "bin-dir": "bin" }, "autoload": { - "psr-0": { "PPI\\BowerModule": "" } + "psr-4": { + "PPI\\BowerModule\\": "src/", + "PPI\\BowerModule\\Tests\\": "tests" + } }, - "target-dir": "PPI/BowerModule", "minimum-stability": "dev" } diff --git a/Module.php b/src/Module.php similarity index 100% rename from Module.php rename to src/Module.php