A lax Web news feed parser
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.3 KiB

{
"name": "mensbeam/lax",
"type": "library",
"description": "A lax newsfeed parser",
"keywords": ["rss","atom","jsonfeed", "newsfeed", "feed", "parser"],
"license": "MIT",
"authors": [
{
"name": "J. King",
"email": "jking@jkingweb.ca",
"homepage": "https://jkingweb.ca/"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-dom": "*",
"psr/http-message": "^1.0",
10 months ago
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
4 years ago
"mensbeam/mimesniff": "^0.2.0",
"mensbeam/html-parser": "^1.3.0",
10 months ago
"symfony/polyfill-intl-idn": "1.*",
"ralouphie/mimey": "^2.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3"
},
"config": {
"platform": {
"php": "7.1.33"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"post-install-cmd": ["@composer bin all install"],
"post-update-cmd": ["@composer bin all update"]
},
"autoload": {
"psr-4": {
"MensBeam\\Lax\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"MensBeam\\Lax\\TestCase\\": "tests/cases/"
}
}
}