{ "name": "flarum/subscriptions", "description": "Allow users to follow discussions and receive notifications for new posts.", "type": "flarum-extension", "keywords": [ "discussion" ], "license": "MIT", "support": { "issues": "https://github.com/flarum/framework/issues", "source": "https://github.com/flarum/subscriptions", "forum": "https://discuss.flarum.org" }, "homepage": "https://flarum.org", "funding": [ { "type": "website", "url": "https://flarum.org/donate/" } ], "require": { "flarum/core": "^1.5" }, "autoload": { "psr-4": { "Flarum\\Subscriptions\\": "src/" } }, "extra": { "branch-alias": { "dev-main": "1.x-dev" }, "flarum-extension": { "title": "Subscriptions", "category": "feature", "icon": { "name": "fas fa-star", "backgroundColor": "#ffea7b", "color": "#de8e00" } }, "flarum-cli": { "modules": { "admin": false, "forum": true, "js": true, "jsCommon": false, "css": true, "gitConf": true, "githubActions": true, "prettier": true, "typescript": false, "bundlewatch": false, "backendTesting": true, "editorConfig": true, "styleci": true } } }, "repositories": [ { "type": "path", "url": "../../*/*" } ], "minimum-stability": "dev", "prefer-stable": true, "autoload-dev": { "psr-4": { "Flarum\\Subscriptions\\Tests\\": "tests/" } }, "scripts": { "test": [ "@test:unit", "@test:integration" ], "test:unit": "phpunit -c tests/phpunit.unit.xml", "test:integration": "phpunit -c tests/phpunit.integration.xml", "test:setup": "@php tests/integration/setup.php" }, "scripts-descriptions": { "test": "Runs all tests.", "test:unit": "Runs all unit tests.", "test:integration": "Runs all integration tests.", "test:setup": "Sets up a database for use with integration tests. Execute this only once." }, "require-dev": { "flarum/testing": "^1.0.0" } }