{
    "name": "scotteh/php-dom-wrapper",
    "type": "library",
    "description": "Simple DOM wrapper to select nodes using either CSS or XPath expressions and manipulate results quickly and easily.",
    "keywords": ["dom", "wrapper", "css", "html", "parser"],
    "homepage": "https://github.com/scotteh/php-dom-wrapper",
    "license": "BSD-3-Clause",
    "authors": [
        {
            "name": "Andrew Scott",
            "email": "andrew@andrewscott.net.au"
        }
    ],
    "require": {
        "php": ">=8.0.0",
        "ext-mbstring": "*",
        "ext-libxml": "*",
        "lib-libxml": ">=2.7.7",
        "symfony/css-selector": "^5.0 || ^6.0 || ^7.0"
    },
    "require-dev": {
        "phpunit/phpunit": "^9.0 || ^10.0"
    },
    "autoload": {
        "psr-4": {
            "DOMWrap\\": "src/"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "DOMWrap\\Tests\\": "tests/"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "3.0-dev"
        }
    }
}
