Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
365 lars 1
{
2
    "name": "paquettg/php-html-parser",
3
    "type": "library",
4
    "description": "An HTML DOM parser. It allows you to manipulate HTML. Find tags on an HTML page with selectors just like jQuery.",
5
    "keywords": ["html", "dom", "parser"],
6
    "homepage": "https://github.com/paquettg/php-html-parser",
7
    "license": "MIT",
8
    "authors": [
9
        {
10
            "name": "Gilles Paquette",
11
            "email": "paquettg@gmail.com",
12
            "homepage": "http://gillespaquette.ca"
13
        }
14
    ],
15
    "require": {
16
        "php": ">=7.1",
17
        "ext-mbstring": "*",
18
        "paquettg/string-encode": "~1.0.0",
19
        "ext-zlib": "*",
20
        "ext-curl": "*"
21
    },
22
    "require-dev": {
23
        "phpunit/phpunit": "^7.5.1",
24
        "mockery/mockery": "^1.2",
25
        "php-coveralls/php-coveralls": "^2.1",
26
        "infection/infection": "^0.13.4",
27
        "phan/phan": "^2.4"
28
    },
29
    "autoload": {
30
        "psr-4": {
31
        	"PHPHtmlParser\\": "src/PHPHtmlParser"
32
       	}
33
    }
34
}