diff --git a/README.md b/README.md index f219b5f..845c3e0 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This way you can: ## Installation -Simply install the plugin with composer: `composer require derhasi/composer-preserve-paths` +Simply install the plugin with composer: `composer require drupal-composer/preserve-paths` ## Configuration @@ -45,7 +45,7 @@ An example composer.json using [composer/installers](https://packagist.org/packa ], "require": { "composer/installers": "^1.2", - "derhasi/composer-preserve-paths": "0.1.*", + "drupal-composer/preserve-paths": "0.1.*", "drupal/views": "3.*", "drupal/drupal": "7.*" }, diff --git a/composer.json b/composer.json index 4ad9d6b..ea4b2da 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "derhasi/composer-preserve-paths", + "name": "drupal-composer/preserve-paths", "description": "Composer plugin for preserving custom paths and supporting nested packages", "type": "composer-plugin", "keywords": [ @@ -8,7 +8,7 @@ "custom path", "nested package" ], - "homepage": "https://github.com/derhasi/composer-preserve-paths", + "homepage": "https://github.com/drupal-composer/preserve-paths", "license": "GPL-2.0+", "authors": [ { @@ -18,7 +18,7 @@ } ], "support": { - "issues": "https://github.com/derhasi/composer-preserve-paths/issues" + "issues": "https://github.com/drupal-composer/preserve-paths/issues" }, "require": { "composer-plugin-api": "^1.0" @@ -32,10 +32,10 @@ }, "autoload": { "psr-4": { - "derhasi\\Composer\\": "src/" + "DrupalComposer\\PreservePaths\\": "src/" } }, "extra": { - "class": "derhasi\\Composer\\Plugin" + "class": "DrupalComposer\\PreservePaths\\Plugin" } } diff --git a/src/PathPreserver.php b/src/PathPreserver.php index 4124267..ee9cca6 100644 --- a/src/PathPreserver.php +++ b/src/PathPreserver.php @@ -1,10 +1,10 @@