Skip to content

Commit

Permalink
transfer from bexvibi to vildanbina
Browse files Browse the repository at this point in the history
  • Loading branch information
vildanbina committed Aug 30, 2021
1 parent 6493b8b commit 119e438
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Latest Stable Version](https://poser.pugx.org/bexvibi/laravel-js-settings/v)](//packagist.org/packages/bexvibi/laravel-js-settings) [![Total Downloads](https://poser.pugx.org/bexvibi/laravel-js-settings/downloads)](//packagist.org/packages/bexvibi/laravel-js-settings) [![Latest Unstable Version](https://poser.pugx.org/bexvibi/laravel-js-settings/v/unstable)](//packagist.org/packages/bexvibi/laravel-js-settings) [![License](https://poser.pugx.org/bexvibi/laravel-js-settings/license)](//packagist.org/packages/bexvibi/laravel-js-settings)
[![Latest Stable Version](https://poser.pugx.org/vildanbina/laravel-js-settings/v)](//packagist.org/packages/vildanbina/laravel-js-settings) [![Total Downloads](https://poser.pugx.org/vildanbina/laravel-js-settings/downloads)](//packagist.org/packages/vildanbina/laravel-js-settings) [![Latest Unstable Version](https://poser.pugx.org/vildanbina/laravel-js-settings/v/unstable)](//packagist.org/packages/vildanbina/laravel-js-settings) [![License](https://poser.pugx.org/vildanbina/laravel-js-settings/license)](//packagist.org/packages/vildanbina/laravel-js-settings)

This package convert all your setting key and values who generated (`oriceon/laravel-settings`) from your Laravel app to JavaScript with a small library to interact with those settings following a very similar syntax you are familiar with.

Expand All @@ -11,13 +11,13 @@ This package convert all your setting key and values who generated (`oriceon/lar
## Installation

```shell
composer require bexvibi/laravel-js-settings
composer require vildanbina/laravel-js-settings
```

In your Laravel app go to `config/app.php` and add the following service provider:

```php
bexvibi\SettingsJs\LaravelJsSettingsServiceProvider::class
vildanbina\SettingsJs\LaravelJsSettingsServiceProvider::class
```

## Usage
Expand Down Expand Up @@ -53,7 +53,7 @@ php artisan settings:js --json
First, publish the default package's configuration file running:

```shell
php artisan vendor:publish --provider="bexvibi\SettingsJs\LaravelJsSettingsServiceProvider"
php artisan vendor:publish --provider="vildanbina\SettingsJs\LaravelJsSettingsServiceProvider"
```

The configuration will be published to `config/settings-js.php`.
Expand Down Expand Up @@ -124,7 +124,7 @@ Now you are good to go! Happy coding!

<div align=center>

Made with :heart: by [Vildan Bina](https://github.com/bexvibi).
Made with :heart: by [Vildan Bina](https://github.com/vildanbina).

[MIT license](LICENSE)

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "bexvibi/laravel-js-settings",
"name": "vildanbina/laravel-js-settings",
"description": "Laravel Settings in JavaScript",
"type": "library",
"keywords": [
Expand All @@ -10,12 +10,12 @@
"javascript",
"js"
],
"homepage": "https://github.com/bexvibi/laravel-js-settings",
"homepage": "https://github.com/vildanbina/laravel-js-settings",
"license": "MIT",
"authors": [
{
"name": "Vildan Bina",
"homepage": "https://github.com/bexvibi",
"homepage": "https://github.com/vildanbina",
"role": "Developer"
}
],
Expand All @@ -26,14 +26,14 @@
},
"autoload": {
"psr-4": {
"bexvibi\\SettingsJs\\": "src/"
"vildanbina\\SettingsJs\\": "src/"
}
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"bexvibi\\SettingsJs\\LaravelJsSettingsServiceProvider"
"vildanbina\\SettingsJs\\LaravelJsSettingsServiceProvider"
]
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/Commands/SettingsJsCommand.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace bexvibi\SettingsJs\Commands;
namespace vildanbina\SettingsJs\Commands;

use bexvibi\SettingsJs\Generators\SettingsJsGenerator;
use vildanbina\SettingsJs\Generators\SettingsJsGenerator;
use Illuminate\Support\Facades\Config;
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputArgument;
Expand Down
2 changes: 1 addition & 1 deletion src/Generators/SettingsJsGenerator.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace bexvibi\SettingsJs\Generators;
namespace vildanbina\SettingsJs\Generators;

use Exception;
use Illuminate\Filesystem\Filesystem as File;
Expand Down
4 changes: 2 additions & 2 deletions src/LaravelJsSettingsServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace bexvibi\SettingsJs;
namespace vildanbina\SettingsJs;

use bexvibi\SettingsJs\Generators\SettingsJsGenerator;
use vildanbina\SettingsJs\Generators\SettingsJsGenerator;
use Illuminate\Support\ServiceProvider;

/**
Expand Down

0 comments on commit 119e438

Please sign in to comment.