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

Commit e8b31a6

Browse files
committed
Work on notifynder
1 parent bf9938e commit e8b31a6

File tree

7 files changed

+119
-2
lines changed

7 files changed

+119
-2
lines changed

phpunit.xml.dist

+3
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@
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>
84+
</testsuite>
8285
<testsuite name="Narrowspark Parsers Component Test Suite">
8386
<directory>./src/Viserio/Parsers/Tests</directory>
8487
</testsuite>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
namespace Viserio\Contracts\Notifynder;
3+
4+
interface Factory
5+
{
6+
7+
}

src/Viserio/Notifynder/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 - 2016 Narrowspark
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

src/Viserio/Notifynder/NotifynderManager.php

Whitespace-only changes.

src/Viserio/Notifynder/README.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Viserio Notifynder package
2+
3+
This package is part of the [Narrowspark framework](http://github.com/narrowspark/framework).
4+
5+
[![Author](http://img.shields.io/badge/[email protected]?style=flat-square)](https://twitter.com/anolilab)
6+
[![Quality Score](https://img.shields.io/scrutinizer/g/narrowspark/framework.svg?style=flat-square)](https://scrutinizer-ci.com/g/narrowspark/framework/code-structure/master)
7+
[![Build Status](https://api.travis-ci.org/narrowspark/framework.svg?branch=master&style=flat-square)](https://travis-ci.org/narrowspark/framework)
8+
[![Latest Version](https://img.shields.io/packagist/v/narrowspark/framework.svg?style=flat-square)](https://github.com/narrowspark/framework/releases)
9+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%205.6-8892BF.svg?style=flat-square)](https://php.net/)
10+
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)
11+
12+
> **Note:** If you want to build an application using Narrowspark, visit the main [![Source Code](http://img.shields.io/badge/source-narrowspark/narrowspark-blue.svg?style=flat-square)](https://github.com/narrowspark/narrowspark).
13+
14+
## Contributing
15+
16+
Issues for this package shall be posted on [Narrowspark framework issues](http://github.com/narrowspark/framework/issues).
17+
Thank you for considering contributing to the Narrowspark framework! The contribution guide can be found in the [Narrowspark documentation](http://narrowspark.de/docs/contributions).
18+
19+
## Installation
20+
21+
Use [Composer](https://getcomposer.org/) to install this package:
22+
23+
```sh
24+
composer require viserio/notifynder
25+
```
26+
27+
## Official Documentation
28+
29+
Documentation for the framework can be found on the [Narrowspark website](http://narrowspark.de/docs).
30+
31+
### License
32+
33+
The Narrowspark framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

src/Viserio/Notifynder/composer.json

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"name" : "viserio/notifynder",
3+
"type" : "library",
4+
"description": "The Viserio Notifynder package.",
5+
"keywords" : [
6+
"narrowspark",
7+
"viserio",
8+
],
9+
"license" : "MIT",
10+
"homepage" : "http://github.com/narrowspark/notifynder",
11+
"support" : {
12+
"issues": "https://github.com/narrowspark/framework/issues",
13+
"source": "https://github.com/narrowspark/framework"
14+
},
15+
"authors" : [
16+
{
17+
"name" : "Daniel Bannert",
18+
"email" : "[email protected]",
19+
"homepage": "http://www.anolilab.de",
20+
"role" : "Developer"
21+
}
22+
],
23+
"require": {
24+
"php" : "7.0.0 - 7.0.5 || ^7.0.7",
25+
"viserio/contracts" : "self.version"
26+
},
27+
"require-dev": {
28+
"narrowspark/php-cs-fixer-config" : "^1.1",
29+
"narrowspark/testing-helper" : "^1.5",
30+
"phpunit/phpunit" : "^5.1"
31+
},
32+
"provide": {
33+
},
34+
"suggest": {
35+
},
36+
"autoload": {
37+
"psr-4": {
38+
"Viserio\\Notifynder\\" : ""
39+
}
40+
},
41+
"autoload-dev": {
42+
"psr-4": {
43+
"Viserio\\Notifynder\\Tests\\" : "Tests/"
44+
}
45+
},
46+
"extra": {
47+
"branch-alias": {
48+
"dev-master" : "1.0-dev"
49+
}
50+
},
51+
"minimum-stability" : "dev",
52+
"prefer-stable" : true
53+
}

src/Viserio/Parsers/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Viserio Filesystem package
1+
# Viserio Parsers 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/filesystem
24+
composer require viserio/parsers
2525
```
2626

2727
## Official Documentation

0 commit comments

Comments
 (0)