mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
aa1b65b5d4
Tests for different drivers will have their own files, but all derive from a common prototype test series where applicable, similar to the existing arrangement for database function tests. However, the prototype will reside with other test cases rather than in the library path. The database function test series will hopefully be moved as well in time.
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "jkingweb/arsse",
|
|
"type": "project",
|
|
"description": "The clean and modern RSS server that doesn't give you any crap",
|
|
"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/"
|
|
}
|
|
|
|
],
|
|
"require": {
|
|
"php": "^7.0",
|
|
"ext-intl": "*",
|
|
"ext-json": "*",
|
|
"ext-hash": "*",
|
|
"fguillot/picofeed": ">=0.1.31",
|
|
"hosteurope/password-generator": "^1.0",
|
|
"docopt/docopt": "^1.0",
|
|
"jkingweb/druuid": "^3.0",
|
|
"zendframework/zend-diactoros": "^1.6"
|
|
},
|
|
"require-dev": {
|
|
"bamarni/composer-bin-plugin": "*"
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": ["@composer bin all install"],
|
|
"post-update-cmd": ["@composer bin all update"]
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"JKingWeb\\Arsse\\": "lib/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"JKingWeb\\Arsse\\Test\\": "tests/lib/",
|
|
"JKingWeb\\Arsse\\TestCase\\": "tests/cases/"
|
|
}
|
|
}
|
|
}
|