forked from duzun/hQuery.php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 1.67 KB
/
composer.json
File metadata and controls
75 lines (75 loc) · 1.67 KB
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
{
"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.0.3",
"license": "MIT",
"authors": [
{
"name": "Dumitru Uzun",
"email": "contact@duzun.me",
"homepage": "https://DUzun.Me",
"role": "Author"
}
],
"homepage": "https://duzun.me/playground/hquery",
"keywords": [
"HTML",
"XML",
"XHTML",
"web",
"scraper",
"scraping",
"crawling",
"PHP"
],
"main": "hquery.php",
"minimum-stability": "RC",
"prefer-stable": true,
"autoload": {
"psr-4": {
"duzun\\": "src/"
},
"psr-0": {
"hQuery": "src/"
},
"classmap": [
"hquery.php"
]
},
"support": {
"email": "contact@duzun.me",
"issues": "https://github.com/duzun/hQuery.php/issues",
"source": "https://github.com/duzun/hQuery.php"
},
"repository": {
"type": "git",
"url": "https://github.com/duzun/hQuery.php.git"
},
"archive": {
"exclude": [
"/tests",
"/tools",
"/docs",
"/.*"
]
},
"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)"
}
}