Skip to content
This repository was archived by the owner on Mar 1, 2023. It is now read-only.

Commit 3151dcb

Browse files
committed
fixes #300
1 parent e8b31a6 commit 3151dcb

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

phpunit.xml.dist

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@
7979
<testsuite name="Narrowspark Middleware Component Test Suite">
8080
<directory>./src/Viserio/Middleware/Tests</directory>
8181
</testsuite>
82-
<testsuite name="Narrowspark Notifynder Component Test Suite">
83-
<directory>./src/Viserio/Notifynder/Tests</directory>
82+
<testsuite name="Narrowspark Notify Component Test Suite">
83+
<directory>./src/Viserio/Notify/Tests</directory>
8484
</testsuite>
8585
<testsuite name="Narrowspark Parsers Component Test Suite">
8686
<directory>./src/Viserio/Parsers/Tests</directory>
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
namespace Viserio\Contracts\Notify;
3+
4+
interface Factory
5+
{
6+
7+
}

src/Viserio/Contracts/Notifynder/Factory.php

-7
This file was deleted.
File renamed without changes.

src/Viserio/Notifynder/README.md src/Viserio/Notify/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Viserio Notifynder package
1+
# Viserio Notify package
22

33
This package is part of the [Narrowspark framework](http://github.com/narrowspark/framework).
44

@@ -21,7 +21,7 @@ Thank you for considering contributing to the Narrowspark framework! The contrib
2121
Use [Composer](https://getcomposer.org/) to install this package:
2222

2323
```sh
24-
composer require viserio/notifynder
24+
composer require viserio/notify
2525
```
2626

2727
## Official Documentation

src/Viserio/Notifynder/composer.json src/Viserio/Notify/composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name" : "viserio/notifynder",
2+
"name" : "viserio/notify",
33
"type" : "library",
4-
"description": "The Viserio Notifynder package.",
4+
"description": "The Viserio Notify package.",
55
"keywords" : [
66
"narrowspark",
77
"viserio",
88
],
99
"license" : "MIT",
10-
"homepage" : "http://github.com/narrowspark/notifynder",
10+
"homepage" : "http://github.com/narrowspark/notify",
1111
"support" : {
1212
"issues": "https://github.com/narrowspark/framework/issues",
1313
"source": "https://github.com/narrowspark/framework"
@@ -35,12 +35,12 @@
3535
},
3636
"autoload": {
3737
"psr-4": {
38-
"Viserio\\Notifynder\\" : ""
38+
"Viserio\\Notify\\" : ""
3939
}
4040
},
4141
"autoload-dev": {
4242
"psr-4": {
43-
"Viserio\\Notifynder\\Tests\\" : "Tests/"
43+
"Viserio\\Notify\\Tests\\" : "Tests/"
4444
}
4545
},
4646
"extra": {

0 commit comments

Comments
 (0)