1{ 2 "name": "scotteh/php-dom-wrapper", 3 "type": "library", 4 "description": "Simple DOM wrapper to select nodes using either CSS or XPath expressions and manipulate results quickly and easily.", 5 "keywords": ["dom", "wrapper", "css", "html", "parser"], 6 "homepage": "https://github.com/scotteh/php-dom-wrapper", 7 "license": "BSD-3-Clause", 8 "authors": [ 9 { 10 "name": "Andrew Scott", 11 "email": "andrew@andrewscott.net.au" 12 } 13 ], 14 "require": { 15 "php": ">=7.1.0", 16 "ext-mbstring": "*", 17 "ext-libxml": "*", 18 "lib-libxml": ">=2.7.7", 19 "symfony/css-selector": "^4.0 || ^5.0 || ^6.0" 20 }, 21 "require-dev": { 22 "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" 23 }, 24 "autoload": { 25 "psr-4": { 26 "DOMWrap\\": "src/" 27 } 28 }, 29 "autoload-dev": { 30 "psr-4": { 31 "DOMWrap\\Tests\\": "tests/" 32 } 33 }, 34 "extra": { 35 "branch-alias": { 36 "dev-master": "2.0-dev" 37 } 38 } 39} 40