Selaa lähdekoodia

Updated composer for Laravel 5.1

Jan Oris 10 vuotta sitten
vanhempi
commit
1e74fcb212
2 muutettua tiedostoa jossa 6 lisäystä ja 6 poistoa
  1. 4 4
      README.md
  2. 2 2
      composer.json

+ 4 - 4
README.md

@@ -21,7 +21,7 @@ Pull this package in through Composer.
 
 ```
 
-Add the service provider to your `Config/app.php` file:
+Add the service provider to your `config/app.php` file:
 
 ```php
 
@@ -30,11 +30,11 @@ Add the service provider to your `Config/app.php` file:
         //...
         'Ixudra\Curl\CurlServiceProvider',
 
-    )
+    ),
 
 ```
 
-Add the facade to your `Config/app.php` file:
+Add the facade to your `config/app.php` file:
 
 ```php
 
@@ -43,7 +43,7 @@ Add the facade to your `Config/app.php` file:
         //...
         'Curl'          => 'Ixudra\Curl\Facades\Curl',
 
-    )
+    ),
 
 ```
 

+ 2 - 2
composer.json

@@ -1,7 +1,7 @@
 {
     "name": "ixudra/curl",
     "description": "Custom PHP Curl library for the Laravel 5 framework - developed by Ixudra",
-    "version": "5.0.0",
+    "version": "5.0.1",
     "keywords": ["Ixudra", "Laravel", "Curl"],
     "homepage": "http://ixudra.be",
     "license": "MIT",
@@ -15,7 +15,7 @@
 
     "require": {
         "php": ">=5.4.0",
-        "illuminate/support": "4.*||5.0.*"
+        "illuminate/support": ">=4.*"
     },
 
     "autoload": {