Skip to content

Commit

Permalink
Repository changed from PrismaLMS to Codions
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioassuncao committed May 16, 2023
1 parent 61141c5 commit 6d2e484
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand All @@ -14,15 +14,15 @@ 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

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.
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -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": [
{
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/ThemeInstaller.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Prisma\LaravelThemeInstaller;
namespace Codions\LaravelThemeInstaller;

use Composer\Installer\LibraryInstaller;
use Composer\Package\PackageInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/ThemeInstallerPlugin.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Prisma\LaravelThemeInstaller;
namespace Codions\LaravelThemeInstaller;

use Composer\Composer;
use Composer\IO\IOInterface;
Expand Down
2 changes: 1 addition & 1 deletion tests/ThemeInstallerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use Composer\Composer;
use Composer\IO\IOInterface;
use Composer\Package\PackageInterface;
use Prisma\LaravelThemeInstaller\ThemeInstaller;
use Codions\LaravelThemeInstaller\ThemeInstaller;
use PHPUnit\Framework\TestCase;

class ThemeInstallerTest extends TestCase
Expand Down

0 comments on commit 6d2e484

Please sign in to comment.