From e8b31a6e47fcb7051a5a4a22c857706d7b5bedf6 Mon Sep 17 00:00:00 2001 From: prisis Date: Fri, 24 Jun 2016 12:11:42 +0200 Subject: [PATCH] Work on notifynder --- phpunit.xml.dist | 3 ++ src/Viserio/Contracts/Notifynder/Factory.php | 7 +++ src/Viserio/Notifynder/LICENSE | 21 ++++++++ src/Viserio/Notifynder/NotifynderManager.php | 0 src/Viserio/Notifynder/README.md | 33 ++++++++++++ src/Viserio/Notifynder/composer.json | 53 ++++++++++++++++++++ src/Viserio/Parsers/README.md | 4 +- 7 files changed, 119 insertions(+), 2 deletions(-) create mode 100644 src/Viserio/Contracts/Notifynder/Factory.php create mode 100644 src/Viserio/Notifynder/LICENSE create mode 100644 src/Viserio/Notifynder/NotifynderManager.php create mode 100644 src/Viserio/Notifynder/README.md create mode 100644 src/Viserio/Notifynder/composer.json diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 85584d38e..19000b756 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -79,6 +79,9 @@ ./src/Viserio/Middleware/Tests + + ./src/Viserio/Notifynder/Tests + ./src/Viserio/Parsers/Tests diff --git a/src/Viserio/Contracts/Notifynder/Factory.php b/src/Viserio/Contracts/Notifynder/Factory.php new file mode 100644 index 000000000..bffe1ceeb --- /dev/null +++ b/src/Viserio/Contracts/Notifynder/Factory.php @@ -0,0 +1,7 @@ + **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). diff --git a/src/Viserio/Notifynder/composer.json b/src/Viserio/Notifynder/composer.json new file mode 100644 index 000000000..db2ba80c7 --- /dev/null +++ b/src/Viserio/Notifynder/composer.json @@ -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" : "d.bannert@anolilab.de", + "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 +} diff --git a/src/Viserio/Parsers/README.md b/src/Viserio/Parsers/README.md index 1a09d71c4..dfa943ed7 100644 --- a/src/Viserio/Parsers/README.md +++ b/src/Viserio/Parsers/README.md @@ -1,4 +1,4 @@ -# Viserio Filesystem package +# Viserio Parsers package This package is part of the [Narrowspark framework](http://github.com/narrowspark/framework). @@ -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