Skip to content

Commit f2ae8a8

Browse files
authored
Merge pull request #5 from Lauriy/laravel-5.5
Try to make package compatible with Laravel 5.5
2 parents 7631f42 + e33f57b commit f2ae8a8

22 files changed

+1363
-1093
lines changed

.env.example

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

.env.testing

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
APP_ENV=testing
2-
ERROR_REPORTING_EMAIL_FROM=test@test.com
3-
ERROR_REPORTING_EMAIL_FROM_NAME=Tester
4-
ERROR_REPORTING_EMAIL_RECIPIENTS="tester1@test.com tester2@test.com tester3@test.com tester4@test.com tester5@test.com tester6@test.com"
5-
ERROR_REPORTING_EMAIL_SUBJECT="Test %APP_ENVIRONMENT%"
62

3+
ERROR_REPORTING_EMAIL_FROM=test@example.com
4+
ERROR_REPORTING_EMAIL_FROM_NAME=Tester
5+
ERROR_REPORTING_EMAIL_RECIPIENTS="tester1@example.com tester2@example.com tester3@example.com tester4@example.com tester5@example.com tester6@example.com"
6+
ERROR_REPORTING_EMAIL_SUBJECT="Laravel error reporting testing"
77

88
MAIL_DRIVER=mail
9-
CACHE_DRIVER=file
10-
SESSION_DRIVER=file
11-
QUEUE_DRIVER=sync
9+
SESSION_DRIVER=file

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/.idea/
2+
!/.idea/dictionaries/
3+
/vendor/
4+
5+
/.env

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2016 Red Function
3+
Copyright (c) 2018 Red Function
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

composer.json

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,50 @@
11
{
22
"name": "redfunction/laravel-error-reporting",
3-
"description": "Laravel Error reporting",
4-
"keywords": ["exception", "error", "report"],
3+
"description": "Laravel error reporting",
4+
"keywords": [
5+
"laravel",
6+
"error",
7+
"reporting",
8+
"package",
9+
"plugin",
10+
"json",
11+
"email"
12+
],
513
"homepage": "https://github.com/redfunction/laravel-error-reporting",
614
"license": "MIT",
715
"authors": [
816
{
917
"name": "Johannes Tamm",
1018
"email": "johannes.tamm@redfunction.ee",
1119
"role": "Developer"
20+
},
21+
{
22+
"name": "Lauri Elias",
23+
"email": "lauri.elias@redfunction.ee",
24+
"role": "Developer"
1225
}
1326
],
1427
"type": "library",
1528
"require": {
16-
"php": ">=5.6.4",
17-
"laravel/framework": "5.3.*"
29+
"php": ">=7.0",
30+
"laravel/framework": "5.5.*"
1831
},
1932
"require-dev": {
20-
"phpunit/phpunit": "~5.0",
21-
"mockery/mockery": "0.9.*"
33+
"phpunit/phpunit": "~6",
34+
"mockery/mockery": "~1",
35+
"orchestra/testbench": "~3.5"
2236
},
2337
"autoload": {
24-
"psr-0": {
25-
"RedFunction\\ErrorReporting": "src/"
38+
"psr-4": {
39+
"RedFunction\\ErrorReporting\\": "src/RedFunction/ErrorReporting/"
2640
}
2741
},
2842
"autoload-dev": {
29-
"classmap": [
30-
"tests/",
31-
"examples"
32-
]
43+
"psr-4": {
44+
"RedFunction\\ErrorReporting\\Examples\\": "examples/",
45+
"RedFunction\\ErrorReporting\\Tests\\": "tests/",
46+
"RedFunction\\ErrorReporting\\": "src/RedFunction/ErrorReporting/"
47+
}
3348
},
3449
"config": {
3550
"preferred-install": "dist"

0 commit comments

Comments
 (0)