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

Commit 5f46458

Browse files
authored
Merge pull request #1 from SolumDeSignum/dev
Dev
2 parents 3bb1229 + 133bd14 commit 5f46458

8 files changed

Lines changed: 71 additions & 79 deletions

File tree

File renamed without changes.

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) Oskars Germovs
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 NON INFRINGEMENT. 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.

README.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Deviation
2+
3+
[![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)
4+
[![Total Downloads](https://poser.pugx.org/solumdesignum/deviation/downloads)](https://packagist.org/packages/solumdesignum/deviation)
5+
[![Latest Stable Version](https://poser.pugx.org/solumdesignum/deviation/v/stable)](https://packagist.org/packages/solumdesignum/deviation)
6+
[![Latest Unstable Version](https://poser.pugx.org/solumdesignum/deviation/v/unstable)](https://packagist.org/packages/solumdesignum/deviation)
7+
[![MIT Licensed](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
8+
9+
## Introduction
10+
Laravel lightweight deviation monitoring tool.
11+
12+
## Installation
13+
14+
Via Composer
15+
16+
``` bash
17+
composer require solumdesignum/deviation
18+
```
19+
20+
Next, publish configuration using the vendor:publish command:
21+
``` bash
22+
php artisan vendor:publish --provider="SolumDeSignum\Scenarios\DeviationServiceProvider"
23+
```
24+
25+
## Contributing
26+
27+
Thank you for considering contributing to the PackageEnvLoader. You can read the contribution
28+
guidelines [here](CONTRIBUTING.md)
29+
30+
## Security
31+
32+
If you discover any security related issues, please email to solumdesignum@gmail.com instead of using the issue tracker.
33+
34+
## Credits
35+
36+
- [Oskars Germovs](http://solum-designum.eu) ([Twitter](https://twitter.com/Solum_DeSignum))
37+
- [All Contributors][link-contributors]
38+
39+
## License
40+
41+
Solum DeSignum Scenarios is open-sourced software licensed under the [MIT license](LICENSE.md).

changelog.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
{
22
"name": "solumdesignum/deviation",
33
"description": "laravel lightweight deviation monitoring tool.",
4-
"license": "Proprietary software",
4+
"keywords": [
5+
"laravel",
6+
"deviation",
7+
"laravel-deviation",
8+
"laravel-deviation-monitoring",
9+
"laravel-errors-monitoring"
10+
],
11+
"license": "MIT",
512
"authors": [
613
{
714
"name": "Oskars Germovs",
@@ -10,13 +17,6 @@
1017
}
1118
],
1219
"homepage": "https://github.com/solumdesignum/deviation",
13-
"keywords": [
14-
"laravel",
15-
"deviation",
16-
"laravel-deviation",
17-
"laravel-deviation-monitoring",
18-
"laravel-errors-monitoring"
19-
],
2020
"require": {
2121
"illuminate/support": "~5|~6|~7|~8|~9|~10",
2222
"php": "^7.4|^8.0|^8.1|^8.2",

license.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

readme.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

src/DeviationServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function register(): void
4040

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

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

0 commit comments

Comments
 (0)