-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathcomposer.json
91 lines (91 loc) · 1.9 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "duzun/hquery",
"type": "library",
"description": "An extremely fast web scraper that parses megabytes of HTML in a blink of an eye. No dependencies. PHP5+",
"version": "3.3.0",
"license": "MIT",
"authors": [
{
"name": "Dumitru Uzun",
"email": "[email protected]",
"homepage": "https://DUzun.Me",
"role": "Author"
}
],
"homepage": "https://duzun.me/playground/hquery",
"keywords": [
"HTML",
"XML",
"XHTML",
"web",
"scraper",
"scraping",
"crawling",
"parser",
"invalid",
"invalid-html",
"broken-html",
"selectors",
"css-selectors",
"jquery-selectors",
"jquery-like",
"fast-parser",
"fastest",
"efficient",
"index",
"http",
"URL",
"PSR-7",
"PHP"
],
"minimum-stability": "RC",
"prefer-stable": true,
"autoload": {
"psr-4": {
"duzun\\": "src/"
},
"psr-0": {
"hQuery": "src/"
},
"classmap": [
"hquery.php"
]
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/duzun/hQuery.php/issues",
"source": "https://github.com/duzun/hQuery.php"
},
"archive": {
"exclude": [
"/tests",
"/tools",
"/docs",
"/.*"
]
},
"platform-check": false,
"require": {
"php": ">=5.3"
},
"require-dev": {
"symfony/dom-crawler": "*",
"symfony/css-selector": "*"
},
"extra": {
"apigen/apigen": "*",
"php-http/mock-client": "*",
"php-http/discovery": "*",
"guzzlehttp/psr7": "*"
},
"suggest": {
"php-http/message": "Might be required by hQuery::fromHTML($message) or hQuery::fromURL()",
"php-http/discovery": "Might be required by hQuery::sendRequest()",
"php-http/socket-client": "Could be used to make HTTP requests before calling hQuery::fromHTML($message)"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}