-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.04 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "manofstrong/sitescrapper",
"description": "A Package to Scrape Websites from their Sitemaps and Extract Relevant Content from the Webpage and Upload to a Database",
"keywords": [
"sitemap",
"text extraction",
"keywords",
"wordcount"
],
"homepage": "https://github.com/manofstrong/sitescrapper",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "ManofStrong",
"email": "manofstrong@nerdyclues.com",
"role": "developer"
}
],
"require": {
"php": ">= 7.0",
"catfan/medoo": "^1.6",
"fabpot/goutte": "^3.2",
"sunra/php-simple-html-dom-parser": "^1.5",
"vipnytt/sitemapparser": "^1.0",
"donatello-za/rake-php-plus": "^1.0",
"sters/extract-content": "^0.0.3"
},
"require-dev": {
"phpunit/phpunit": "6.*",
"codeclimate/php-test-reporter": "^0"
},
"autoload": {
"psr-4": {
"Manofstrong\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Manofstrong\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}