2017-02-09 16:01:24 +00:00
|
|
|
{
|
2017-02-16 20:29:42 +00:00
|
|
|
"name": "jkingweb/arsse",
|
2017-08-23 23:56:18 +00:00
|
|
|
"type": "project",
|
2017-12-07 22:33:45 +00:00
|
|
|
"description": "The clean and modern RSS server that doesn't give you any crap",
|
2017-02-16 20:29:42 +00:00
|
|
|
"keywords": ["rss"],
|
|
|
|
"license": "MIT",
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "J. King",
|
|
|
|
"email": "jking@jkingweb.ca",
|
|
|
|
"homepage": "https://jkingweb.ca/"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Dustin Wilson",
|
|
|
|
"email": "dustin@dustinwilson.com",
|
|
|
|
"homepage": "https://dustinwilson.com/"
|
|
|
|
}
|
2017-02-09 16:01:24 +00:00
|
|
|
|
2017-02-16 20:29:42 +00:00
|
|
|
],
|
|
|
|
"require": {
|
2023-03-24 14:28:20 +00:00
|
|
|
"php": ">=7.3",
|
2017-03-07 23:01:13 +00:00
|
|
|
"ext-intl": "*",
|
2017-06-04 12:15:10 +00:00
|
|
|
"ext-json": "*",
|
|
|
|
"ext-hash": "*",
|
2021-07-03 16:27:20 +00:00
|
|
|
"ext-filter": "*",
|
2019-03-29 14:15:30 +00:00
|
|
|
"ext-dom": "*",
|
2024-12-16 02:53:20 +00:00
|
|
|
"nicolus/picofeed": "dev-php84",
|
2019-04-09 20:15:36 +00:00
|
|
|
"hosteurope/password-generator": "1.*",
|
2024-12-16 02:53:20 +00:00
|
|
|
"docopt/docopt": "dev-master",
|
2019-04-09 20:15:36 +00:00
|
|
|
"jkingweb/druuid": "3.*",
|
2023-03-24 14:28:20 +00:00
|
|
|
"guzzlehttp/psr7": "2.*",
|
2024-12-16 02:53:20 +00:00
|
|
|
"laminas/laminas-xml": "dev-fixup as 1.4.0",
|
2023-03-24 14:28:20 +00:00
|
|
|
"laminas/laminas-httphandlerrunner": "2.*"
|
2017-02-16 20:29:42 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2017-12-07 20:09:03 +00:00
|
|
|
"bamarni/composer-bin-plugin": "*"
|
|
|
|
},
|
2021-07-06 01:47:44 +00:00
|
|
|
"suggest": {
|
2023-03-23 02:57:58 +00:00
|
|
|
"ext-pcntl": "To respond to signals, particularly to reload configuration via SIGHUP"
|
2021-07-06 01:47:44 +00:00
|
|
|
},
|
2020-01-20 05:34:02 +00:00
|
|
|
"config": {
|
|
|
|
"platform": {
|
2023-01-28 17:43:42 +00:00
|
|
|
"php": "7.3.33"
|
2022-01-11 22:54:02 +00:00
|
|
|
},
|
|
|
|
"allow-plugins": {
|
|
|
|
"bamarni/composer-bin-plugin": true
|
2020-01-20 05:34:02 +00:00
|
|
|
}
|
|
|
|
},
|
2023-03-23 02:57:58 +00:00
|
|
|
"extra": {
|
|
|
|
"bamarni-bin": {
|
|
|
|
"bin-links": false,
|
|
|
|
"forward-command": true
|
|
|
|
}
|
2017-02-16 20:29:42 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2017-03-28 04:12:12 +00:00
|
|
|
"JKingWeb\\Arsse\\": "lib/"
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2018-11-22 18:55:57 +00:00
|
|
|
"JKingWeb\\Arsse\\Test\\": "tests/lib/",
|
|
|
|
"JKingWeb\\Arsse\\TestCase\\": "tests/cases/"
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
2023-01-24 20:12:21 +00:00
|
|
|
},
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "vcs",
|
2023-03-23 02:57:58 +00:00
|
|
|
"url": "https://github.com/JKingweb/picoFeed-1/"
|
2024-12-16 02:53:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "vcs",
|
|
|
|
"url": "https://github.com/JKingweb/laminas-xml/"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "vcs",
|
|
|
|
"url": "https://github.com/mensbeam/docopt.php/"
|
2023-01-24 20:12:21 +00:00
|
|
|
}
|
2024-12-16 02:53:20 +00:00
|
|
|
|
2023-01-24 20:12:21 +00:00
|
|
|
]
|
2017-02-20 22:04:13 +00:00
|
|
|
}
|