Explorar o código

New release for Laravel 5.4 compatibility

Jan Oris %!s(int64=8) %!d(string=hai) anos
pai
achega
7b8de84325
Modificáronse 2 ficheiros con 3 adicións e 3 borrados
  1. 1 1
      composer.json
  2. 2 2
      src/Ixudra/Curl/CurlServiceProvider.php

+ 1 - 1
composer.json

@@ -1,7 +1,7 @@
 {
 {
     "name": "ixudra/curl",
     "name": "ixudra/curl",
     "description": "Custom PHP Curl library for the Laravel 5 framework - developed by Ixudra",
     "description": "Custom PHP Curl library for the Laravel 5 framework - developed by Ixudra",
-    "version": "6.6.1",
+    "version": "6.7.0",
     "keywords": ["Ixudra", "Laravel", "Curl"],
     "keywords": ["Ixudra", "Laravel", "Curl"],
     "homepage": "http://ixudra.be",
     "homepage": "http://ixudra.be",
     "license": "MIT",
     "license": "MIT",

+ 2 - 2
src/Ixudra/Curl/CurlServiceProvider.php

@@ -10,13 +10,13 @@ class CurlServiceProvider extends ServiceProvider {
      */
      */
     protected $defer = false;
     protected $defer = false;
 
 
+
     /**
     /**
      * @return void
      * @return void
      */
      */
     public function register()
     public function register()
     {
     {
-        $this->app->singleton('Curl',
-            function () {
+        $this->app->singleton('Curl', function () {
                 return new CurlService();
                 return new CurlService();
             }
             }
         );
         );