Skip to content

Commit 72543e9

Browse files
author
Maximilian Schmidt
committed
Initial Commit
1 parent 3e34cbb commit 72543e9

File tree

3 files changed

+394
-0
lines changed

3 files changed

+394
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/

composer.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "mcstreetguy/crawler",
3+
"description": "An advanced web-crawler written in PHP.",
4+
"type": "library",
5+
"license": "MIT",
6+
"prefer-stable": true,
7+
"minimum-stability": "dev",
8+
"readme": "./README.md",
9+
"require": {
10+
"guzzlehttp/guzzle": "~6.0"
11+
},
12+
"require-dev": {
13+
"kint-php/kint": "^3.2"
14+
},
15+
"suggest": {
16+
"ext-curl": "For improved network requests, replaces stream handler usage."
17+
},
18+
"authors": [
19+
{
20+
"name": "Maximilian Schmidt",
21+
"email": "[email protected]",
22+
"homepage": "https://www.mcstreetguy.de/",
23+
"role": "Lead-Developer"
24+
}
25+
],
26+
"autoload": {
27+
"psr-4": {
28+
"MCStreetguy\\Crawler\\": "Classes/"
29+
}
30+
}
31+
}

composer.lock

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

0 commit comments

Comments
 (0)