forked from scotteh/php-goose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.11 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
{
"name": "scotteh/php-goose",
"type": "library",
"description": "Readability / Html Content / Article Extractor & Web Scrapping library written in PHP",
"keywords": ["scraper", "http", "extractor", "text", "content", "scraping", "website", "readability"],
"homepage": "https://github.com/scotteh/php-goose",
"license": "Apache-2.0",
"authors": [
{
"name": "Andrew Scott",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.0",
"ext-mbstring": "*",
"ext-libxml": "*",
"lib-libxml": ">=2.7.7",
"guzzlehttp/guzzle": "6.*",
"jakeasmith/http_build_url": "0.1.*",
"scotteh/php-dom-wrapper": "~0.7"
},
"require-dev": {
"phpunit/phpunit": "4.6.*",
"phpdocumentor/phpdocumentor": "2.8.*"
},
"autoload": {
"psr-4": {
"Goose\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Goose\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.5-dev"
}
}
}