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": {
|
2021-02-25 19:49:17 +00:00
|
|
|
"php": "^7.1 || ^8.0",
|
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": "*",
|
2020-09-15 12:45:49 +00:00
|
|
|
"nicolus/picofeed": "^0.1.43",
|
2019-04-09 20:15:36 +00:00
|
|
|
"hosteurope/password-generator": "1.*",
|
|
|
|
"docopt/docopt": "1.*",
|
|
|
|
"jkingweb/druuid": "3.*",
|
2022-08-04 13:26:17 +00:00
|
|
|
"guzzlehttp/psr7": "1.*",
|
2020-01-20 05:34:02 +00:00
|
|
|
"laminas/laminas-httphandlerrunner": "1.*"
|
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": {
|
|
|
|
"ext-pcntl": "To respond to signals, particular to reload configuration via SIGHUP"
|
|
|
|
},
|
2020-01-20 05:34:02 +00:00
|
|
|
"config": {
|
|
|
|
"platform": {
|
|
|
|
"php": "7.1.33"
|
2022-01-11 22:54:02 +00:00
|
|
|
},
|
|
|
|
"allow-plugins": {
|
|
|
|
"bamarni/composer-bin-plugin": true
|
2020-01-20 05:34:02 +00:00
|
|
|
}
|
|
|
|
},
|
2017-12-07 20:09:03 +00:00
|
|
|
"scripts": {
|
|
|
|
"post-install-cmd": ["@composer bin all install"],
|
|
|
|
"post-update-cmd": ["@composer bin all update"]
|
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
|
|
|
}
|
|
|
|
}
|
2017-02-20 22:04:13 +00:00
|
|
|
}
|