Skip to content

Commit

Permalink
Merge pull request #5 from laravel-notification-channels/dev
Browse files Browse the repository at this point in the history
Update supported Laravel versions; Package autodiscovery
  • Loading branch information
iv-craig authored Jul 15, 2020
2 parents 467bce8 + 48e2d75 commit 11e4f4e
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
insert_final_newline = false
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
build
composer.phar
composer.lock
.phpunit.result.cache
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

All notable changes to the `InterFAX notification channel` will be documented in this file

## 2.0.0 - 2020-07-15

- Add support for Laravel 7.x
- Drop support for Laravel 5.8
- Add package autodiscovery

## 1.0.0 - 2020-01-08

- Initial release
13 changes: 10 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
],
"require": {
"php": "^7.2",
"illuminate/notifications": "5.8.*|^6.0",
"illuminate/support": "5.8.*|^6.0",
"illuminate/notifications": "^6.0|^7.0",
"illuminate/support": "^6.0|^7.0",
"interfax/interfax": "^1.1"
},
"require-dev": {
"mockery/mockery": "^1.0",
"mpdf/mpdf": "^8.0",
"orchestra/testbench": "~3.8|~4.0",
"orchestra/testbench": "~4.0|~5.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
Expand All @@ -38,5 +38,12 @@
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"NotificationChannels\\Interfax\\InterfaxServiceProvider"
]
}
}
}

0 comments on commit 11e4f4e

Please sign in to comment.