Skip to content

Commit 5268d8f

Browse files
committed
Rabranding
1 parent 5cbe8d5 commit 5268d8f

5 files changed

Lines changed: 14 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<a name="2.0.0"></a>
2-
# [2.0.0](https://github.com/atomastic/macroable) (2021-02-19)
2+
# [2.0.0](https://github.com/glowyphp/macroable) (2021-02-19)
33
* Move to PHP 7.4
44

55
<a name="1.0.0"></a>
6-
# [1.0.0](https://github.com/atomastic/macroable) (2020-12-05)
6+
# [1.0.0](https://github.com/glowyphp/macroable) (2020-12-05)
77
* Initial release

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Macroable Component is a trait that, gives you the ability in effect to add new methods to a class at runtime.
44
</p>
55
<p align="center">
6-
<a href="https://github.com/atomastic/macroable/releases"><img alt="Version" src="https://img.shields.io/github/release/atomastic/macroable.svg?label=version&color=green"></a> <a href="https://github.com/atomastic/macroable"><img src="https://img.shields.io/badge/license-MIT-blue.svg?color=green" alt="License"></a> <a href="https://packagist.org/packages/atomastic/macroable"><img src="https://poser.pugx.org/atomastic/macroable/downloads" alt="Total downloads"></a> <img src="https://github.com/atomastic/macroable/workflows/Static%20Analysis/badge.svg?branch=dev"> <img src="https://github.com/atomastic/macroable/workflows/Tests/badge.svg">
7-
<a href="https://app.codacy.com/gh/atomastic/macroable?utm_source=github.com&utm_medium=referral&utm_content=atomastic/macroable&utm_campaign=Badge_Grade_Dashboard"><img src="https://api.codacy.com/project/badge/Grade/72b4dc84c20145e1b77dc0004a3c8e3d"></a> <a href="https://codeclimate.com/github/atomastic/macroable/maintainability"><img src="https://api.codeclimate.com/v1/badges/a4c673a4640a3863a9a4/maintainability" /></a>
6+
<a href="https://github.com/glowyphp/macroable/releases"><img alt="Version" src="https://img.shields.io/github/release/glowy/macroable.svg?label=version&color=green"></a> <a href="https://github.com/glowyphp/macroable"><img src="https://img.shields.io/badge/license-MIT-blue.svg?color=green" alt="License"></a> <a href="https://packagist.org/packages/glowy/macroable"><img src="https://poser.pugx.org/glowy/macroable/downloads" alt="Total downloads"></a> <img src="https://github.com/glowyphp/macroable/workflows/Static%20Analysis/badge.svg?branch=dev"> <img src="https://github.com/glowyphp/macroable/workflows/Tests/badge.svg">
7+
<a href="https://app.codacy.com/gh/glowy/macroable?utm_source=github.com&utm_medium=referral&utm_content=glowy/macroable&utm_campaign=Badge_Grade_Dashboard"><img src="https://api.codacy.com/project/badge/Grade/72b4dc84c20145e1b77dc0004a3c8e3d"></a> <a href="https://codeclimate.com/github/glowy/macroable/maintainability"><img src="https://api.codeclimate.com/v1/badges/a4c673a4640a3863a9a4/maintainability" /></a>
88
</p>
99

1010
<br>
@@ -14,11 +14,11 @@ Macroable Component is a trait that, gives you the ability in effect to add new
1414
#### With [Composer](https://getcomposer.org)
1515

1616
```
17-
composer require atomastic/macroable
17+
composer require glowy/macroable
1818
```
1919

2020
### Resources
21-
* [Documentation](https://atomastic.com/components/macroable)
21+
* [Documentation](https://digital.flextype.org/glowyphp/components/macroable)
2222

2323

2424
### Tests
@@ -30,5 +30,5 @@ Run tests
3030
```
3131

3232
### License
33-
[The MIT License (MIT)](https://github.com/atomastic/macroable/blob/master/LICENSE)
33+
[The MIT License (MIT)](https://github.com/glowyphp/macroable/blob/master/LICENSE)
3434
Copyright (c) 2020 [Sergey Romanenko](https://github.com/Awilum)

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "atomastic/macroable",
2+
"name": "glowy/macroable",
33
"description": "Macroable Component is a trait that, gives you the ability in effect to add new methods to a class at runtime.",
44
"license": "MIT",
55
"keywords": [
6-
"Macroable", "macroable", "php", "atomastic"
6+
"Macroable", "macroable", "php", "glowy"
77
],
88
"support": {
9-
"source": "https://github.com/atomastic/macroable",
10-
"issues": "https://github.com/atomastic/macroable/issues"
9+
"source": "https://github.com/glowyphp/macroable",
10+
"issues": "https://github.com/glowyphp/macroable/issues"
1111
},
1212
"authors": [
1313
{
@@ -21,7 +21,7 @@
2121
},
2222
"autoload":{
2323
"psr-4": {
24-
"Atomastic\\Macroable\\": "src/"
24+
"Glowy\\Macroable\\": "src/"
2525
}
2626
},
2727
"require-dev": {

src/Macroable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Atomastic\Macroable;
5+
namespace Glowy\Macroable;
66

77
use BadMethodCallException;
88
use Closure;

tests/MacroableTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
use Atomastic\Macroable\Macroable;
5+
use Glowy\Macroable\Macroable;
66

77
beforeEach(function (): void {
88
$this->EmptyMacroable = new class() {

0 commit comments

Comments
 (0)