42 lines
941 B
JSON
42 lines
941 B
JSON
{
|
|
"name": "rss-hub/rss-hub",
|
|
"description": "Open-source RSS hub for agents",
|
|
"type": "project",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "RSS Hub Team",
|
|
"email": "info@rss-hub.org"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"slim/slim": "^4.12",
|
|
"slim/psr7": "^1.6",
|
|
"nyholm/psr7": "^1.8",
|
|
"fig/http-message-util": "^1.1",
|
|
"vlucas/phpdotenv": "^5.5",
|
|
"ramsey/uuid": "^4.7"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.0",
|
|
"squizlabs/php_codesniffer": "^3.7"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"post-install-cmd": [
|
|
"chmod +x app.php"
|
|
],
|
|
"post-update-cmd": [
|
|
"chmod +x app.php"
|
|
]
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true
|
|
}
|
|
} |