Skip to content

Commit 11e4f4e

Browse files
authored
Merge pull request #5 from laravel-notification-channels/dev
Update supported Laravel versions; Package autodiscovery
2 parents 467bce8 + 48e2d75 commit 11e4f4e

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ trim_trailing_whitespace = true
1313

1414
[*.md]
1515
trim_trailing_whitespace = false
16+
insert_final_newline = false

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
build
33
composer.phar
44
composer.lock
5+
.phpunit.result.cache

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Changelog
2+
3+
All notable changes to the `InterFAX notification channel` will be documented in this file
4+
5+
## 2.0.0 - 2020-07-15
6+
7+
- Add support for Laravel 7.x
8+
- Drop support for Laravel 5.8
9+
- Add package autodiscovery
10+
11+
## 1.0.0 - 2020-01-08
12+
13+
- Initial release

composer.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
],
1414
"require": {
1515
"php": "^7.2",
16-
"illuminate/notifications": "5.8.*|^6.0",
17-
"illuminate/support": "5.8.*|^6.0",
16+
"illuminate/notifications": "^6.0|^7.0",
17+
"illuminate/support": "^6.0|^7.0",
1818
"interfax/interfax": "^1.1"
1919
},
2020
"require-dev": {
2121
"mockery/mockery": "^1.0",
2222
"mpdf/mpdf": "^8.0",
23-
"orchestra/testbench": "~3.8|~4.0",
23+
"orchestra/testbench": "~4.0|~5.0",
2424
"phpunit/phpunit": "^8.0"
2525
},
2626
"autoload": {
@@ -38,5 +38,12 @@
3838
},
3939
"config": {
4040
"sort-packages": true
41+
},
42+
"extra": {
43+
"laravel": {
44+
"providers": [
45+
"NotificationChannels\\Interfax\\InterfaxServiceProvider"
46+
]
47+
}
4148
}
4249
}

0 commit comments

Comments
 (0)