diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d6b4139..89ecdca 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing -Contributions are **welcome**. We accept contributions via Pull Requests on [Github](https://github.com/prismalms/laravel-themes-installer). +Contributions are **welcome**. We accept contributions via Pull Requests on [Github](https://github.com/codions/laravel-themes-installer). When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change. diff --git a/README.md b/README.md index ddc94dc..eec2f05 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Laravel Themes Installer -[![Latest Stable Version](https://poser.pugx.org/prismalms/laravel-themes-installer/v)](//packagist.org/packages/prismalms/laravel-themes-installer) [![Total Downloads](https://poser.pugx.org/prismalms/laravel-themes-installer/downloads)](//packagist.org/packages/prismalms/laravel-themes-installer) [![License](https://poser.pugx.org/prismalms/laravel-themes-installer/license)](//packagist.org/packages/prismalms/laravel-themes-installer) +[![Latest Stable Version](https://poser.pugx.org/codions/laravel-themes-installer/v)](//packagist.org/packages/codions/laravel-themes-installer) [![Total Downloads](https://poser.pugx.org/codions/laravel-themes-installer/downloads)](//packagist.org/packages/codions/laravel-themes-installer) [![License](https://poser.pugx.org/codions/laravel-themes-installer/license)](//packagist.org/packages/codions/laravel-themes-installer) This package facilitates working with theme packages by enabling the installation of standalone theme packages directly into the `themes/` directory instead of the `vendor/` directory. @@ -14,7 +14,7 @@ You can specify an alternate directory by including a `theme-dir` in the extra d ## Installation 1. Ensure you have the `type` set to `laravel-theme` in your theme's `composer.json` -2. Require this package: `composer require prismalms/laravel-themes-installer` +2. Require this package: `composer require codions/laravel-themes-installer` 3. Require your bespoke theme using Composer ## Notes @@ -22,7 +22,7 @@ You can specify an alternate directory by including a `theme-dir` in the extra d When working on a theme that is version controlled within an app that is also version controlled, you have to commit and push from inside the Theme directory and then `composer update` within the app itself to ensure that the latest version of your theme (dependant upon constraint) is specified in your composer.lock file. ## Related projects -- [Laravel Themes Manager](https://github.com/prismalms/laravel-themes-manager): Develop multi-themes Laravel application with ease. +- [Laravel Themes Manager](https://github.com/codions/laravel-themes-manager): Develop multi-themes Laravel application with ease. ## Credits - This project is a modified version of [hexadog/laravel-theme-installer](https://github.com/hexadog/laravel-theme-installer), created as a fork with additional changes. diff --git a/composer.json b/composer.json index 6a63dc7..877b481 100644 --- a/composer.json +++ b/composer.json @@ -1,10 +1,10 @@ { - "name": "prismalms/laravel-themes-installer", + "name": "codions/laravel-themes-installer", "type": "composer-plugin", "license": "MIT", "support": { - "issues": "https://github.com/prismalms/laravel-themes-installer/issues", - "source": "https://github.com/prismalms/laravel-themes-installer" + "issues": "https://github.com/codions/laravel-themes-installer/issues", + "source": "https://github.com/codions/laravel-themes-installer" }, "authors": [ { @@ -14,14 +14,14 @@ ], "autoload": { "psr-0": { - "Prisma\\LaravelThemeInstaller\\": "src/" + "Codions\\LaravelThemeInstaller\\": "src/" }, "psr-4": { - "Prisma\\LaravelThemeInstaller\\": "src" + "Codions\\LaravelThemeInstaller\\": "src" } }, "extra": { - "class": "Prisma\\LaravelThemeInstaller\\ThemeInstallerPlugin" + "class": "Codions\\LaravelThemeInstaller\\ThemeInstallerPlugin" }, "require-dev": { "composer/composer": "^1.3|^2.2.12", diff --git a/src/ThemeInstaller.php b/src/ThemeInstaller.php index c6417b4..4dcd8e2 100644 --- a/src/ThemeInstaller.php +++ b/src/ThemeInstaller.php @@ -1,6 +1,6 @@