Arsse/composer.json

52 lines
1.3 KiB
JSON
Raw Normal View History

{
2017-02-16 15:29:42 -05:00
"name": "jkingweb/arsse",
"type": "project",
2017-12-07 17:33:45 -05:00
"description": "The clean and modern RSS server that doesn't give you any crap",
2017-02-16 15:29:42 -05: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 15:29:42 -05:00
],
"require": {
2019-04-09 16:15:36 -04:00
"php": "7.*",
"ext-intl": "*",
2017-06-04 08:15:10 -04:00
"ext-json": "*",
"ext-hash": "*",
"ext-dom": "*",
"p3k/picofeed": "0.1.*",
2019-04-09 16:15:36 -04:00
"hosteurope/password-generator": "1.*",
"docopt/docopt": "1.*",
"jkingweb/druuid": "3.*",
"zendframework/zend-diactoros": "2.*",
"zendframework/zend-httphandlerrunner": "1.*"
2017-02-16 15:29:42 -05:00
},
"require-dev": {
2017-12-07 15:09:03 -05:00
"bamarni/composer-bin-plugin": "*"
},
"scripts": {
"post-install-cmd": ["@composer bin all install"],
"post-update-cmd": ["@composer bin all update"]
2017-02-16 15:29:42 -05:00
},
"autoload": {
"psr-4": {
2017-03-28 00:12:12 -04:00
"JKingWeb\\Arsse\\": "lib/"
2017-02-16 15:29:42 -05:00
}
},
"autoload-dev": {
"psr-4": {
"JKingWeb\\Arsse\\Test\\": "tests/lib/",
"JKingWeb\\Arsse\\TestCase\\": "tests/cases/"
2017-02-16 15:29:42 -05:00
}
}
}