{
    "name": "yusufkandemir/microdata-parser",
    "type": "library",
    "description": "Parse microdata from HTML documents with ease. PHP Implementation of W3C Microdata to JSON Specification.",
    "keywords": [
        "microdata",
        "parser",
        "json",
        "w3c",
        "whatwg"
    ],
    "homepage": "https://github.com/yusufkandemir/microdata-parser",
    "license": "MIT",
    "authors": [
        {
            "name": "Yusuf Kandemir",
            "email": "yusuf.kandemir@outlook.com.tr",
            "homepage": "https://github.com/yusufkandemir"
        }
    ],
    "scripts": {
        "analyze": "phpstan",
        "test": "pest",
        "lint": "php-cs-fixer fix --dry-run --verbose",
        "lint:fix": "php-cs-fixer fix"
    },
    "require": {
        "php": "^8.1",
        "ext-dom": "*",
        "ext-libxml": "*"
    },
    "require-dev": {
        "friendsofphp/php-cs-fixer": "^3.54",
        "pestphp/pest": "^1.23.1",
        "phpstan/phpstan": "^1.10.67"
    },
    "suggest": {
        "ext-json": "Needed to convert results to JSON"
    },
    "autoload": {
        "psr-4": {
            "YusufKandemir\\MicrodataParser\\": "src"
        }
    },
    "autoload-dev": {
        "psr-4": {
            "YusufKandemir\\MicrodataParser\\Tests\\": "tests"
        }
    },
    "extra": {
        "branch-alias": {
            "dev-master": "1.0-dev"
        }
    },
    "config": {
        "sort-packages": true,
        "allow-plugins": {
          "pestphp/pest-plugin": true
        }
    }
}
