Skip to content

Commit 05df2d9

Browse files
committed
Rebranding
1 parent 2367311 commit 05df2d9

File tree

6 files changed

+20
-18
lines changed

6 files changed

+20
-18
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
php: ['7.4', '8.0']
12+
php: ['7.4', '8.0', '8.1']
1313
dependency-version: [prefer-lowest, prefer-stable]
1414

1515
steps:

CHANGELOG.md

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

55
<a name="1.0.1"></a>
6-
# [1.0.1](https://github.com/atomastic/session) (2020-10-06)
6+
# [1.0.1](https://github.com/glowyphp/session) (2020-10-06)
77
* Update composer.json
88

99
<a name="1.0.0"></a>
10-
# [1.0.0](https://github.com/atomastic/session) (2020-10-05)
10+
# [1.0.0](https://github.com/glowyphp/session) (2020-10-05)
1111
* Initial commit

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
Session Component provide a fluent, object-oriented interface for working with Session.
44
</p>
55
<p align="center">
6-
<a href="https://github.com/atomastic/session/releases"><img alt="Version" src="https://img.shields.io/github/release/atomastic/session.svg?label=version&color=green"></a> <a href="https://github.com/atomastic/session"><img src="https://img.shields.io/badge/license-MIT-blue.svg?color=green" alt="License"></a> <a href="https://packagist.org/packages/atomastic/session"><img src="https://poser.pugx.org/atomastic/session/downloads" alt="Total downloads"></a> <img src="https://github.com/atomastic/session/workflows/Static%20Analysis/badge.svg?branch=dev"> <img src="https://github.com/atomastic/session/workflows/Tests/badge.svg"> <a href="https://app.codacy.com/gh/atomastic/session?utm_source=github.com&utm_medium=referral&utm_content=atomastic/session&utm_campaign=Badge_Grade"><img src="https://api.codacy.com/project/badge/Grade/d8a4df30541c47828f3ea42d2477f74e"></a> <a href="https://codeclimate.com/github/atomastic/session/maintainability"><img src="https://api.codeclimate.com/v1/badges/089f18a2187bcb3d35fb/maintainability" /></a> <a href="https://app.fossa.com/projects/git%2Bgithub.com%2Fatomastic%2Fsession?ref=badge_shield" alt="FOSSA Status"><img src="https://app.fossa.com/api/projects/git%2Bgithub.com%2Fatomastic%2Fsession.svg?type=shield"/></a>
6+
<a href="https://github.com/glowyphp/session/releases"><img alt="Version" src="https://img.shields.io/github/release/glowyphp/session.svg?label=version&color=green"></a> <a href="https://github.com/glowyphp/session"><img src="https://img.shields.io/badge/license-MIT-blue.svg?color=green" alt="License"></a> <a href="https://packagist.org/packages/glowy/session"><img src="https://poser.pugx.org/glowy/session/downloads" alt="Total downloads"></a> <img src="https://github.com/glowyphp/session/workflows/Static%20Analysis/badge.svg?branch=dev"> <img src="https://github.com/glowyphp/session/workflows/Tests/badge.svg">
7+
<a href="https://app.codacy.com/gh/glowy/session?utm_source=github.com&utm_medium=referral&utm_content=glowy/session&utm_campaign=Badge_Grade_Dashboard"><img src="https://api.codacy.com/project/badge/Grade/72b4dc84c20145e1b77dc0004a3c8e3d"></a> <a href="https://codeclimate.com/github/glowy/session/maintainability"><img src="https://api.codeclimate.com/v1/badges/a4c673a4640a3863a9a4/maintainability" /></a> <img src="http://poser.pugx.org/glowy/session/require/php">
78
</p>
89

910
<br>
@@ -13,11 +14,11 @@ Session Component provide a fluent, object-oriented interface for working with S
1314
#### With [Composer](https://getcomposer.org)
1415

1516
```
16-
composer require atomastic/session
17+
composer require glowyphp/session
1718
```
1819

1920
### Resources
20-
* [Documentation](https://atomastic.com/components/session)
21+
* [Documentation](https://digital.flextype.org/glowyphp/components/session)
2122

2223
### Tests
2324

@@ -28,5 +29,5 @@ Run tests
2829
```
2930

3031
### License
31-
[The MIT License (MIT)](https://github.com/atomastic/session/blob/master/LICENSE.txt)
32+
[The MIT License (MIT)](https://github.com/glowyphp/session/blob/master/LICENSE.txt)
3233
Copyright (c) 2021 [Sergey Romanenko](https://github.com/Awilum)

composer.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": "atomastic/session",
2+
"name": "glowy/session",
33
"description": "Session Component provides basic methods to work with session.",
44
"license": "MIT",
55
"keywords": [
6-
"Session", "session", "php-session", "php", "atomastic"
6+
"Session", "session", "php-session", "php", "glowyphp", "glowy"
77
],
88
"support": {
9-
"source": "https://github.com/atomastic/session",
10-
"issues": "https://github.com/atomastic/session/issues"
9+
"source": "https://github.com/glowyphp/session",
10+
"issues": "https://github.com/glowyphp/session/issues"
1111
},
1212
"authors": [
1313
{
@@ -21,12 +21,13 @@
2121
},
2222
"autoload":{
2323
"psr-4": {
24-
"Atomastic\\Session\\": "src/"
24+
"Glowy\\Session\\": "src/"
2525
}
2626
},
2727
"require-dev": {
28-
"doctrine/coding-standard": "8.2.0",
29-
"pestphp/pest": "^1.0.2",
30-
"phpstan/phpstan": "^0.12.77"
28+
"doctrine/coding-standard": "9.0.0",
29+
"pestphp/pest": "^1.21.1",
30+
"phpstan/phpstan": "^1.2.0",
31+
"symfony/var-dumper": "^5.4.0"
3132
}
3233
}

src/Session.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\Session;
5+
namespace Glowy\Session;
66

77
use RuntimeException as SessionException;
88

tests/SessionTest.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\Session\Session;
5+
use Glowy\Session\Session;
66

77
beforeEach(function (): void {
88
$_SESSION = [];

0 commit comments

Comments
 (0)