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

Commit

Permalink
Work on notifynder
Browse files Browse the repository at this point in the history
  • Loading branch information
prisis committed Jun 24, 2016
1 parent bf9938e commit e8b31a6
Show file tree
Hide file tree
Showing 7 changed files with 119 additions and 2 deletions.
3 changes: 3 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@
<testsuite name="Narrowspark Middleware Component Test Suite">
<directory>./src/Viserio/Middleware/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Notifynder Component Test Suite">
<directory>./src/Viserio/Notifynder/Tests</directory>
</testsuite>
<testsuite name="Narrowspark Parsers Component Test Suite">
<directory>./src/Viserio/Parsers/Tests</directory>
</testsuite>
Expand Down
7 changes: 7 additions & 0 deletions src/Viserio/Contracts/Notifynder/Factory.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php
namespace Viserio\Contracts\Notifynder;

interface Factory
{

}
21 changes: 21 additions & 0 deletions src/Viserio/Notifynder/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2015 - 2016 Narrowspark

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Empty file.
33 changes: 33 additions & 0 deletions src/Viserio/Notifynder/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Viserio Notifynder package

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

[![Author](http://img.shields.io/badge/[email protected]?style=flat-square)](https://twitter.com/anolilab)
[![Quality Score](https://img.shields.io/scrutinizer/g/narrowspark/framework.svg?style=flat-square)](https://scrutinizer-ci.com/g/narrowspark/framework/code-structure/master)
[![Build Status](https://api.travis-ci.org/narrowspark/framework.svg?branch=master&style=flat-square)](https://travis-ci.org/narrowspark/framework)
[![Latest Version](https://img.shields.io/packagist/v/narrowspark/framework.svg?style=flat-square)](https://github.com/narrowspark/framework/releases)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%205.6-8892BF.svg?style=flat-square)](https://php.net/)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE)

> **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).
## Contributing

Issues for this package shall be posted on [Narrowspark framework issues](http://github.com/narrowspark/framework/issues).
Thank you for considering contributing to the Narrowspark framework! The contribution guide can be found in the [Narrowspark documentation](http://narrowspark.de/docs/contributions).

## Installation

Use [Composer](https://getcomposer.org/) to install this package:

```sh
composer require viserio/notifynder
```

## Official Documentation

Documentation for the framework can be found on the [Narrowspark website](http://narrowspark.de/docs).

### License

The Narrowspark framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).
53 changes: 53 additions & 0 deletions src/Viserio/Notifynder/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"name" : "viserio/notifynder",
"type" : "library",
"description": "The Viserio Notifynder package.",
"keywords" : [
"narrowspark",
"viserio",
],
"license" : "MIT",
"homepage" : "http://github.com/narrowspark/notifynder",
"support" : {
"issues": "https://github.com/narrowspark/framework/issues",
"source": "https://github.com/narrowspark/framework"
},
"authors" : [
{
"name" : "Daniel Bannert",
"email" : "[email protected]",
"homepage": "http://www.anolilab.de",
"role" : "Developer"
}
],
"require": {
"php" : "7.0.0 - 7.0.5 || ^7.0.7",
"viserio/contracts" : "self.version"
},
"require-dev": {
"narrowspark/php-cs-fixer-config" : "^1.1",
"narrowspark/testing-helper" : "^1.5",
"phpunit/phpunit" : "^5.1"
},
"provide": {
},
"suggest": {
},
"autoload": {
"psr-4": {
"Viserio\\Notifynder\\" : ""
}
},
"autoload-dev": {
"psr-4": {
"Viserio\\Notifynder\\Tests\\" : "Tests/"
}
},
"extra": {
"branch-alias": {
"dev-master" : "1.0-dev"
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}
4 changes: 2 additions & 2 deletions src/Viserio/Parsers/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Viserio Filesystem package
# Viserio Parsers package

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

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

```sh
composer require viserio/filesystem
composer require viserio/parsers
```

## Official Documentation
Expand Down

0 comments on commit e8b31a6

Please sign in to comment.