Skip to content

Commit f9d0143

Browse files
authored
Merge pull request #6 from ilhamarrouf/development
#5 support laravel 5.5 and auto discovery
2 parents b7fad35 + 0a24369 commit f9d0143

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
.DS_Store
2+
vendor/
3+
composer.lock

composer.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"require": {
1111
"php" : "^5.6|^7.0",
12-
"illuminate/support": "~5.1.0|~5.2.0|~5.3.0|~5.4.0"
12+
"illuminate/support": "~5.1.0|~5.2.0|~5.3.0|~5.4.0|~5.5.0"
1313
},
1414
"autoload" : {
1515
"psr-4" : {
@@ -18,5 +18,15 @@
1818
"files" : [
1919
"src/helpers.php"
2020
]
21+
},
22+
"extra": {
23+
"laravel": {
24+
"providers": [
25+
"Kawankoding\\Fcm\\FcmServiceProvider"
26+
],
27+
"aliases" : {
28+
"Fcm": "Kawankoding\\Fcm\\FcmFacade"
29+
}
30+
}
2131
}
2232
}

0 commit comments

Comments
 (0)