1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-18 17:10:33 +00:00
Arsse/composer.json

48 lines
1.2 KiB
JSON
Raw Normal View History

{
2017-02-16 14:29:42 -06: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 14:29:42 -06: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 14:29:42 -06:00
],
"require": {
"php": "^7.0",
"ext-intl": "*",
2017-06-04 08:15:10 -04:00
"ext-json": "*",
"ext-hash": "*",
"fguillot/picofeed": ">=0.1.31",
"hosteurope/password-generator": "^1.0",
"docopt/docopt": "^1.0",
2017-11-29 23:38:34 -05:00
"jkingweb/druuid": "^3.0"
2017-02-16 14:29:42 -06: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 14:29:42 -06:00
},
"autoload": {
"psr-4": {
2017-03-27 23:12:12 -05:00
"JKingWeb\\Arsse\\": "lib/"
2017-02-16 14:29:42 -06:00
}
},
"autoload-dev": {
"psr-4": {
2017-03-27 23:12:12 -05:00
"JKingWeb\\Arsse\\Test\\": "tests/lib/"
2017-02-16 14:29:42 -06:00
}
}
}