Skip to content

Commit 14ef75e

Browse files
committed
change composer file
1 parent 3b3ec18 commit 14ef75e

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

composer.json

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,22 @@
11
{
2-
"name": "kalkani/url-status-checker",
2+
"name": "kalkani/php-url-status-checker",
33
"description": "A package to check the status code of a URL and detect redirections.",
44
"type": "library",
55
"license": "MIT",
6-
"require": {
7-
"php": ">=7.4",
8-
"guzzlehttp/guzzle": "^7.9"
9-
},
106
"autoload": {
117
"psr-4": {
12-
"UrlStatusChecker\\": "src/"
8+
"Kalkani\\PhpUrlStatusChecker\\": "src/"
139
}
10+
},
11+
"authors": [
12+
{
13+
"name": "Dipesh Changawala",
14+
"email": "[email protected]"
15+
}
16+
],
17+
"minimum-stability": "stable",
18+
"require": {
19+
"php": ">=7.4",
20+
"guzzlehttp/guzzle": "^7.9"
1421
}
1522
}

composer.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/UrlStatusChecker.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace UrlStatusChecker;
3+
namespace Kalkani\PhpUrlStatusChecker;
44

55
use Throwable;
66
use GuzzleHttp\Client;

test.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require 'vendor/autoload.php';
44

5-
use UrlStatusChecker\UrlStatusChecker;
5+
use Kalkani\PhpUrlStatusChecker\UrlStatusChecker;
66

77
$checker = new UrlStatusChecker();
88

0 commit comments

Comments
 (0)