Skip to content
This repository was archived by the owner on Aug 13, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) Oskars Germovs

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 NON INFRINGEMENT. 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.
41 changes: 41 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Deviation

[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/solumdesignum/deviation/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/solumdesignum/deviation/?branch=master)
[![Total Downloads](https://poser.pugx.org/solumdesignum/deviation/downloads)](https://packagist.org/packages/solumdesignum/deviation)
[![Latest Stable Version](https://poser.pugx.org/solumdesignum/deviation/v/stable)](https://packagist.org/packages/solumdesignum/deviation)
[![Latest Unstable Version](https://poser.pugx.org/solumdesignum/deviation/v/unstable)](https://packagist.org/packages/solumdesignum/deviation)
[![MIT Licensed](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)

## Introduction
Laravel lightweight deviation monitoring tool.

## Installation

Via Composer

``` bash
composer require solumdesignum/deviation
```

Next, publish configuration using the vendor:publish command:
``` bash
php artisan vendor:publish --provider="SolumDeSignum\Scenarios\DeviationServiceProvider"
```

## Contributing

Thank you for considering contributing to the PackageEnvLoader. You can read the contribution
guidelines [here](CONTRIBUTING.md)

## Security

If you discover any security related issues, please email to solumdesignum@gmail.com instead of using the issue tracker.

## Credits

- [Oskars Germovs](http://solum-designum.eu) ([Twitter](https://twitter.com/Solum_DeSignum))
- [All Contributors][link-contributors]

## License

Solum DeSignum Scenarios is open-sourced software licensed under the [MIT license](LICENSE.md).
8 changes: 0 additions & 8 deletions changelog.md

This file was deleted.

16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{
"name": "solumdesignum/deviation",
"description": "laravel lightweight deviation monitoring tool.",
"license": "Proprietary software",
"keywords": [
"laravel",
"deviation",
"laravel-deviation",
"laravel-deviation-monitoring",
"laravel-errors-monitoring"
],
"license": "MIT",
"authors": [
{
"name": "Oskars Germovs",
Expand All @@ -10,13 +17,6 @@
}
],
"homepage": "https://github.com/solumdesignum/deviation",
"keywords": [
"laravel",
"deviation",
"laravel-deviation",
"laravel-deviation-monitoring",
"laravel-errors-monitoring"
],
"require": {
"illuminate/support": "~5|~6|~7|~8|~9|~10",
"php": "^7.4|^8.0|^8.1|^8.2",
Expand Down
5 changes: 0 additions & 5 deletions license.md

This file was deleted.

57 changes: 0 additions & 57 deletions readme.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/DeviationServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function register(): void

// Register the service the package provides.
$this->app->singleton('deviation', function ($app) {
return new Deviation;
return new Deviation();
});

$this->app->register(EventServiceProvider::class);
Expand Down