2018-11-10 18:57:03 +00:00
|
|
|
{
|
|
|
|
"name": "yusufkandemir/microdata-parser",
|
|
|
|
"type": "library",
|
2018-11-15 05:51:48 +00:00
|
|
|
"description": "Parse microdata from HTML documents with ease. PHP Implementation of W3C Microdata to JSON Specification.",
|
2018-11-10 18:57:03 +00:00
|
|
|
"keywords": [
|
|
|
|
"yusufkandemir",
|
|
|
|
"microdata-parser",
|
|
|
|
"Microdata",
|
|
|
|
"HTML Microdata",
|
|
|
|
"PHP Microdata Parser"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/yusufkandemir/microdata-parser",
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "Yusuf Kandemir",
|
|
|
|
"email": "yusuf.kandemir@outlook.com.tr",
|
|
|
|
"homepage": "https://github.com/yusufkandemir",
|
|
|
|
"role": "Developer"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2018-11-11 20:04:19 +00:00
|
|
|
"php" : "~7.0",
|
|
|
|
"ext-dom": "*"
|
2018-11-10 18:57:03 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
|
|
|
"phpunit/phpunit" : ">=5.4.3",
|
|
|
|
"squizlabs/php_codesniffer": "^3.0"
|
|
|
|
},
|
2018-11-15 05:51:48 +00:00
|
|
|
"suggest": {
|
|
|
|
"ext-json": "Needed to convert results to JSON"
|
|
|
|
},
|
2018-11-10 18:57:03 +00:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"YusufKandemir\\MicrodataParser\\": "src"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"YusufKandemir\\MicrodataParser\\Tests\\": "tests"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"test": "phpunit",
|
|
|
|
"check-style": "phpcs src tests",
|
|
|
|
"fix-style": "phpcbf src tests"
|
|
|
|
},
|
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
|
|
|
"dev-master": "1.0-dev"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"sort-packages": true
|
|
|
|
}
|
|
|
|
}
|