1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-22 05:02:40 +00:00
Arsse/composer.json

82 lines
2 KiB
JSON
Raw Permalink Normal View History

{
2017-02-16 20:29:42 +00:00
"name": "jkingweb/arsse",
"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-16 20:29:42 +00:00
],
"require": {
"php": ">=7.3",
"ext-intl": "*",
2017-06-04 12:15:10 +00:00
"ext-json": "*",
"ext-hash": "*",
2021-07-03 16:27:20 +00:00
"ext-filter": "*",
"ext-dom": "*",
"nicolus/picofeed": "dev-php84",
2019-04-09 20:15:36 +00:00
"hosteurope/password-generator": "1.*",
"docopt/docopt": "dev-master",
2019-04-09 20:15:36 +00:00
"jkingweb/druuid": "3.*",
"guzzlehttp/psr7": "2.*",
"laminas/laminas-xml": "dev-fixup as 1.4.0",
"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": {
"ext-pcntl": "To respond to signals, particularly to reload configuration via SIGHUP"
2021-07-06 01:47:44 +00:00
},
"config": {
"platform": {
"php": "7.3.33"
2022-01-11 22:54:02 +00:00
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"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": {
"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",
"url": "https://github.com/JKingweb/picoFeed-1/"
},
{
"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
}
2023-01-24 20:12:21 +00:00
]
}