소스 검색

change: name from Ixudra -> Hugh

Hugh Harlequin 2 년 전
부모
커밋
30c065a068
5개의 변경된 파일11개의 추가작업 그리고 11개의 파일을 삭제
  1. 5 5
      composer.json
  2. 1 1
      src/Builder.php
  3. 2 2
      src/CurlService.php
  4. 1 1
      src/CurlServiceProvider.php
  5. 2 2
      src/Facades/Curl.php

+ 5 - 5
composer.json

@@ -1,6 +1,6 @@
 {
-    "name": "ixudra/curl",
-    "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra",
+    "name": "hugh/curl",
+    "description": "Custom PHP Curl library for the Laravel framework - developed by Ixudra - redeveloped from Hugh",
     "version": "6.22.1",
     "keywords": ["Ixudra", "Laravel", "Curl"],
     "homepage": "http://ixudra.be",
@@ -21,16 +21,16 @@
 
     "autoload": {
         "psr-4": {
-            "Ixudra\\Curl\\": "src/"
+            "Hugh\\Curl\\": "src/"
         }
     },
     "extra": {
         "laravel": {
             "providers": [
-                "Ixudra\\Curl\\CurlServiceProvider"
+                "Hugh\\Curl\\CurlServiceProvider"
             ],
             "aliases": {
-                "Curl": "Ixudra\\Curl\\Facades\\Curl"
+                "Curl": "Hugh\\Curl\\Facades\\Curl"
             }
         }
     }

+ 1 - 1
src/Builder.php

@@ -1,4 +1,4 @@
-<?php namespace Ixudra\Curl;
+<?php namespace Hugh\Curl;
 
 
 use stdClass;

+ 2 - 2
src/CurlService.php

@@ -1,11 +1,11 @@
-<?php namespace Ixudra\Curl;
+<?php namespace Hugh\Curl;
 
 
 class CurlService {
 
     /**
      * @param $url string   The URL to which the request is to be sent
-     * @return \Ixudra\Curl\Builder
+     * @return Builder
      */
     public function to($url)
     {

+ 1 - 1
src/CurlServiceProvider.php

@@ -1,4 +1,4 @@
-<?php namespace Ixudra\Curl;
+<?php namespace Hugh\Curl;
 
 
 use Illuminate\Support\ServiceProvider;

+ 2 - 2
src/Facades/Curl.php

@@ -1,10 +1,10 @@
-<?php namespace Ixudra\Curl\Facades;
+<?php namespace Hugh\Curl\Facades;
 
 
 use Illuminate\Support\Facades\Facade;
 
 /**
- * @method static \Ixudra\Curl\Builder to(string $url)
+ * @method static \Hugh\Curl\Builder to(string $url)
  */
 class Curl extends Facade {