Skip to content

Commit 9f88f60

Browse files
Changed domain
1 parent 961dfad commit 9f88f60

File tree

13 files changed

+17
-17
lines changed

13 files changed

+17
-17
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<a href="https://eugabrielsilva.tk/glowie/reactables" target="_blank"><img src="https://i.imgur.com/prpiWac.png" alt="SkeltchGo" width="250"/></a>
2+
<a href="https://gabrielsilva.dev.br/glowie/reactables" target="_blank"><img src="https://i.imgur.com/prpiWac.png" alt="Reactables" width="250"/></a>
33
</p>
44

55
<p align="center">
@@ -10,7 +10,7 @@
1010
</p>
1111

1212
## Glowie dynamic view components plugin
13-
Reactables is a plugin designed to create dynamic and reactive view components with [Glowie Framework](https://eugabrielsilva.tk/glowie).
13+
Reactables is a plugin designed to create dynamic and reactive view components with [Glowie Framework](https://gabrielsilva.dev.br/glowie).
1414

1515
## Features
1616
- Create reactive components without Javascript or API calls
@@ -24,6 +24,6 @@ Reactables is a plugin designed to create dynamic and reactive view components w
2424
- Incredibly lightweight and no performance impacts
2525

2626
## Credits
27-
Reactables and Glowie are currently being developed by [Gabriel Silva](https://eugabrielsilva.tk).
27+
Reactables and Glowie are currently being developed by [Gabriel Silva](https://gabrielsilva.dev.br).
2828

2929
Special thanks to the developers of [Livewire](https://github.com/livewire/livewire) and [morphdom](https://github.com/patrick-steele-idem/morphdom) for inspiring this plugin.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
"name": "glowieframework/reactables",
33
"description": "Glowie dynamic view components plugin",
44
"license": "MIT",
5-
"homepage": "https://eugabrielsilva.tk/glowie/reactables",
5+
"homepage": "https://gabrielsilva.dev.br/glowie/reactables",
66
"support": {
77
"issues": "https://github.com/glowieframework/reactables/issues",
88
"source": "https://github.com/glowieframework/reactables"
99
},
1010
"authors": [
1111
{
1212
"name": "Gabriel Silva",
13-
"email": "glowie@eugabrielsilva.tk",
14-
"homepage": "https://eugabrielsilva.tk/glowie"
13+
"email": "glowie@gabrielsilva.dev.br",
14+
"homepage": "https://gabrielsilva.dev.br/glowie"
1515
}
1616
],
1717
"require-dev": {

src/Commands/Create.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @author Glowie
1515
* @copyright Copyright (c) Glowie
1616
* @license MIT
17-
* @link https://eugabrielsilva.tk/glowie
17+
* @link https://gabrielsilva.dev.br/glowie
1818
*/
1919
class Create extends Command{
2020

src/Commands/DeleteTempUploads.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @author Glowie
1515
* @copyright Copyright (c) Glowie
1616
* @license MIT
17-
* @link https://eugabrielsilva.tk/glowie
17+
* @link https://gabrielsilva.dev.br/glowie
1818
*/
1919
class DeleteTempUploads extends Command{
2020

src/Controllers/BaseComponent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @author Glowie
2020
* @copyright Copyright (c) Glowie
2121
* @license MIT
22-
* @link https://eugabrielsilva.tk/glowie
22+
* @link https://gabrielsilva.dev.br/glowie
2323
*/
2424
abstract class BaseComponent extends Controller{
2525

src/Controllers/ExtendedElement.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @author Glowie
1515
* @copyright Copyright (c) Glowie
1616
* @license MIT
17-
* @link https://eugabrielsilva.tk/glowie
17+
* @link https://gabrielsilva.dev.br/glowie
1818
*/
1919
class ExtendedElement extends Element{
2020

src/Controllers/Hasheable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @author Glowie
99
* @copyright Copyright (c) Glowie
1010
* @license MIT
11-
* @link https://eugabrielsilva.tk/glowie
11+
* @link https://gabrielsilva.dev.br/glowie
1212
*/
1313
interface Hasheable{
1414

src/Controllers/Reactables.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @author Glowie
1414
* @copyright Copyright (c) Glowie
1515
* @license MIT
16-
* @link https://eugabrielsilva.tk/glowie
16+
* @link https://gabrielsilva.dev.br/glowie
1717
*/
1818
class Reactables extends Controller{
1919

src/Exception/ComponentException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @author Glowie
1212
* @copyright Copyright (c) Glowie
1313
* @license MIT
14-
* @link https://eugabrielsilva.tk/glowie
14+
* @link https://gabrielsilva.dev.br/glowie
1515
*/
1616
class ComponentException extends Exception{
1717

src/Middlewares/DispatchMiddlewares.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @author Glowie
1414
* @copyright Copyright (c) Glowie
1515
* @license MIT
16-
* @link https://eugabrielsilva.tk/glowie
16+
* @link https://gabrielsilva.dev.br/glowie
1717
*/
1818
class DispatchMiddlewares extends Middleware{
1919

0 commit comments

Comments
 (0)