Skip to content

Commit 9e1ec06

Browse files
Auto discovery support for Laravel 5.5
1 parent eeb200e commit 9e1ec06

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

composer.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
],
2222
"require": {
2323
"php": ">=5.6.4",
24-
"illuminate/support": "~5.3|~5.4",
24+
"illuminate/support": "~5.3|~5.4|~5.5",
2525
"guzzlehttp/guzzle": "~6.0"
2626
},
2727
"autoload": {
@@ -30,12 +30,22 @@
3030
}
3131
},
3232
"require-dev": {
33-
"orchestra/testbench": "~3.3",
34-
"phpunit/phpunit": "~5.0"
33+
"orchestra/testbench": "~3.5",
34+
"phpunit/phpunit": "~6.0"
3535
},
3636
"autoload-dev": {
3737
"psr-4": {
3838
"Linkstreet\\LaravelSms\\Tests\\": "tests"
3939
}
40+
},
41+
"extra": {
42+
"laravel": {
43+
"providers": [
44+
"Linkstreet\\LaravelSms\\Providers\\SmsServiceProvider"
45+
],
46+
"aliases": {
47+
"Sms": "Linkstreet\\LaravelSms\\Facades\\Sms"
48+
}
49+
}
4050
}
4151
}

0 commit comments

Comments
 (0)