You've already forked wp-fedistream
WP FediStream - Stream music over ActivityPub Features: - Custom post types: Artist, Album, Track, Playlist - Custom taxonomies: Genre, Mood, License - User roles: Artist, Label - Admin dashboard with statistics - Frontend templates and shortcodes - Audio player with queue management - ActivityPub integration with actor support - WooCommerce product types for albums/tracks - User library with favorites and history - Notification system (in-app and email) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "magdev/wp-fedistream",
|
|
"description": "Stream music over ActivityPub - Build your own music streaming platform for Musicians and Labels",
|
|
"type": "wordpress-plugin",
|
|
"license": "GPL-2.0-or-later",
|
|
"authors": [
|
|
{
|
|
"name": "Marco Graetsch",
|
|
"email": "magdev3.0@gmail.com",
|
|
"homepage": "https://src.bundespruefstelle.ch/magdev"
|
|
}
|
|
],
|
|
"homepage": "https://src.bundespruefstelle.ch/magdev/wp-fedistream",
|
|
"support": {
|
|
"issues": "https://src.bundespruefstelle.ch/magdev/wp-fedistream/issues"
|
|
},
|
|
"require": {
|
|
"php": ">=8.3",
|
|
"twig/twig": "^3.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^10.0",
|
|
"squizlabs/php_codesniffer": "^3.7",
|
|
"wp-coding-standards/wpcs": "^3.0",
|
|
"phpcompatibility/phpcompatibility-wp": "*"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"WP_FediStream\\": "includes/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"WP_FediStream\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
},
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true,
|
|
"platform": {
|
|
"php": "8.3.0"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"phpcs": "phpcs",
|
|
"phpcbf": "phpcbf",
|
|
"test": "phpunit"
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|