Skip to content

Commit 7033868

Browse files
committed
initial commit
0 parents  commit 7033868

File tree

6 files changed

+697
-0
lines changed

6 files changed

+697
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor/*
2+
/vendors/*

README.md

Whitespace-only changes.

composer.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"name": "kalkani/url-status-checker",
3+
"description": "A package to check the status code of a URL and detect redirections.",
4+
"type": "library",
5+
"license": "MIT",
6+
"require": {
7+
"php": ">=7.4",
8+
"guzzlehttp/guzzle": "^7.9"
9+
},
10+
"autoload": {
11+
"psr-4": {
12+
"UrlStatusChecker\\": "src/"
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)