Skip to content

Commit e7b619f

Browse files
committed
Merge branch 'develop'
2 parents d4aeddd + 32e3f66 commit e7b619f

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.5] - 2022-07-18
11+
12+
### Changed
13+
- Moved back to original namespace.
14+
1015
## [1.0.4] - 2022-02-19
1116

1217
### Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ echo \Settings\Setting::getValue('dark_mode'); // true
4646

4747
We've taken care over documenting everything you'll need to get started and use Laravel settings fully.
4848

49-
[Check out the docs](https://elbowspaceuk.github.io/laravel-settings) on our documentation site.
49+
[Check out the docs](https://tobytwigger.github.io/laravel-settings) on our documentation site.
5050

5151
[comment]: <> (To build them locally, you'll need to have ruby &#40;we'd recommend using rbenv&#41; and the gem bundler &#40;https://bundler.io/&#41; installed. Run `bundle install && bundle exec jekyll serve` in the docs folder.)
5252

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "elbowspaceuk/laravel-settings",
2+
"name": "tobytwigger/laravel-settings",
33
"description": "Settings for Laravel",
44
"type": "library",
55
"keywords": [
@@ -17,8 +17,8 @@
1717
"settings-repository"
1818
],
1919
"license": "MIT",
20-
"homepage": "https://github.com/ElbowSpaceUK/laravel-settings",
21-
"readme": "https://github.com/ElbowSpaceUK/laravel-settings/blob/master/README.md",
20+
"homepage": "https://github.com/tobytwigger/laravel-settings",
21+
"readme": "https://github.com/tobytwigger/laravel-settings/blob/master/README.md",
2222
"authors": [
2323
{
2424
"name": "Toby Twigger",
@@ -28,8 +28,8 @@
2828
],
2929
"support": {
3030
"email": "tobytwigger1@gmail.com",
31-
"issues":"https://github.com/ElbowSpaceUK/laravel-settings/issues",
32-
"docs":"https://elbowspaceuk.github.io/laravel-settings/"
31+
"issues":"https://github.com/tobytwigger/laravel-settings/issues",
32+
"docs":"https://tobytwigger.github.io/laravel-settings/"
3333
},
3434
"funding": [
3535
{

docs/_docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Laravel Settings provides simple but flexible settings to any Laravel app.
3434
All you need to do to use this project is pull it into an existing Laravel app using composer.
3535

3636
```console
37-
composer require elbowspaceuk/laravel-settings
37+
composer require tobytwigger/laravel-settings
3838
```
3939

4040
You can publish the configuration file by running

docs/_docs/vue.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ If you're using Vue, we've put together a package to let you access and change s
2626
First you'll need to install the package using npm or yarn.
2727

2828
```shell
29-
npm install --save @elbowspaceuk/laravel-settings-vue
30-
yarn add @elbowspaceuk/laravel-settings-vue
29+
npm install --save @tobytwigger/laravel-settings-vue
30+
yarn add @tobytwigger/laravel-settings-vue
3131
```
3232

3333
**Initialise**
3434
In your `app.js` file, where you create your Vue instance, add the following to initialise the plugin.
3535

3636
```js
3737
// app.js
38-
import Settings from '@elbowspaceuk/laravel-settings-vue';
38+
import Settings from '@tobytwigger/laravel-settings-vue';
3939

4040
Vue.use(Settings, {
4141
axios: axios

0 commit comments

Comments
 (0)