forked from thesoftwarefanatics/php-html-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.27 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "stoutlogic/php-html-parser",
"type": "library",
"description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
"keywords": ["html", "dom", "parser"],
"homepage": "https://github.com/thesoftwarefanatics/php-html-parser",
"license": "MIT",
"authors": [
{
"name": "Gilles Paquette",
"email": "paquettg@gmail.com",
"homepage": "http://gillespaquette.ca"
},
{
"name": "The Software Fanatics GmbH",
"email": "dev@thesoftwarefanatics.com",
"homepage": "https://thesoftwarefanatics.com"
},
{
"name": "Stout Logic, LLC",
"email": "steve@stoutlogic.com"
}
],
"require": {
"php": "^7.1",
"paquettg/string-encode": "^0.1.1"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"php-coveralls/php-coveralls": "^2.0",
"mockery/mockery": "^1.0"
},
"replace": {
"paquettg/php-html-parser": "self.version"
},
"autoload": {
"psr-0": {
"PHPHtmlParser": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.8.x-dev"
}
}
}