Skip to content

Commit 109f366

Browse files
committed
updated repo links
1 parent 837ba6e commit 109f366

File tree

6 files changed

+23
-22
lines changed

6 files changed

+23
-22
lines changed

README.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ PHP Curl Library
55

66
Install using composer:
77

8-
{
9-
"repositories": [
10-
{
11-
"type": "vcs",
12-
"url": "https://github.com/sujeet-kumar/php-curl-lib"
13-
}
14-
],
15-
"require": {
16-
"sujeet-kumar/php-curl-lib": "dev-master"
8+
```json
9+
{
10+
"repositories": [
11+
{
12+
"type": "vcs",
13+
"url": "https://github.com/sujeetkv/php-curl-lib"
1714
}
15+
],
16+
"require": {
17+
"sujeetkv/php-curl-lib": "dev-master"
1818
}
19-
19+
}
20+
```

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "sujeet-kumar/php-curl-lib",
2+
"name": "sujeetkv/php-curl-lib",
33
"description": "PHP Curl Library",
44
"type": "library",
55
"keywords": ["php", "curl", "library"],
6-
"homepage": "https://github.com/sujeet-kumar/php-curl-lib/",
6+
"homepage": "https://github.com/sujeetkv/php-curl-lib/",
77
"license": "MIT",
88
"authors": [
99
{
@@ -17,8 +17,8 @@
1717
},
1818
"autoload": {
1919
"psr-4": {
20-
"SujeetKumar\\CurlLib\\": "src/"
20+
"SujeetKV\\CurlLib\\": "src/"
2121
}
2222
},
2323
"minimum-stability": "dev"
24-
}
24+
}

example.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
require './src/CurlException.php';
77
require './src/CurlResponse.php';
88

9-
use SujeetKumar\CurlLib\Curl;
9+
use SujeetKV\CurlLib\Curl;
1010

1111
$curl = new Curl(array(
1212
'timeout' => 30, // time limit for request

src/Curl.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<?php
2-
namespace SujeetKumar\CurlLib;
2+
namespace SujeetKV\CurlLib;
33

44
/**
55
* PHP Curl Library
66
*
77
* @author Sujeet <sujeetkv90@gmail.com>
8-
* @link https://github.com/sujeet-kumar/php-curl-lib
8+
* @link https://github.com/sujeetkv/php-curl-lib
99
*/
1010
class Curl
1111
{
12-
const USER_AGENT = 'PHP Curl Library (+https://github.com/sujeet-kumar/php-curl-lib)';
12+
const USER_AGENT = 'PHP Curl Library (+https://github.com/sujeetkv/php-curl-lib)';
1313

1414
protected $url = '';
1515
protected $port = 80;

src/CurlException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
2-
namespace SujeetKumar\CurlLib;
2+
namespace SujeetKV\CurlLib;
33

44
/**
55
* CurlException class
66
*
77
* @author Sujeet <sujeetkv90@gmail.com>
8-
* @link https://github.com/sujeet-kumar/php-curl-lib
8+
* @link https://github.com/sujeetkv/php-curl-lib
99
*/
1010
class CurlException extends \Exception
1111
{

src/CurlResponse.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?php
2-
namespace SujeetKumar\CurlLib;
2+
namespace SujeetKV\CurlLib;
33

44
/**
55
* CurlResponse class
66
* - PSR 7 compliant
77
*
88
* @author Sujeet <sujeetkv90@gmail.com>
9-
* @link https://github.com/sujeet-kumar/php-curl-lib
9+
* @link https://github.com/sujeetkv/php-curl-lib
1010
*/
1111
class CurlResponse
1212
{

0 commit comments

Comments
 (0)