Package Discovery
@@ -42,6 +42,10 @@ Pull this package in through Composer.
or run in terminal:
`composer require ixudra/curl`
+### Laravel 5.5+ Integration
+
+Laravel's package discovery will take care of integration for you.
### Laravel 5.* Integration
@@ -22,5 +22,15 @@
"psr-4": {
"Ixudra\\Curl\\": "src/"
}
+ },
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Ixudra\\Curl\\CurlServiceProvider"
+ ],
+ "aliases": {
+ "Curl": "Ixudra\\Curl\\Facades\\Curl"
+ }