2015-06-26 10:54:07 +08:00
|
|
|
{
|
2018-10-17 11:14:48 +08:00
|
|
|
"name": "flarum/subscriptions",
|
2015-10-11 15:00:11 +08:00
|
|
|
"description": "Allow users to follow discussions and receive notifications for new posts.",
|
|
|
|
"type": "flarum-extension",
|
2022-01-20 16:55:30 +08:00
|
|
|
"keywords": [
|
|
|
|
"discussion"
|
|
|
|
],
|
2015-10-11 15:00:11 +08:00
|
|
|
"license": "MIT",
|
|
|
|
"support": {
|
2022-07-13 05:30:03 +08:00
|
|
|
"issues": "https://github.com/flarum/framework/issues",
|
2020-12-09 08:58:17 +08:00
|
|
|
"source": "https://github.com/flarum/subscriptions",
|
|
|
|
"forum": "https://discuss.flarum.org"
|
2015-10-11 15:00:11 +08:00
|
|
|
},
|
2020-12-09 08:58:17 +08:00
|
|
|
"homepage": "https://flarum.org",
|
|
|
|
"funding": [
|
|
|
|
{
|
|
|
|
"type": "website",
|
|
|
|
"url": "https://flarum.org/donate/"
|
|
|
|
}
|
|
|
|
],
|
2015-10-11 15:00:11 +08:00
|
|
|
"require": {
|
2023-05-31 16:50:39 +08:00
|
|
|
"flarum/core": "^2.0"
|
2015-10-11 15:00:11 +08:00
|
|
|
},
|
2015-06-26 10:54:07 +08:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2015-10-11 15:14:35 +08:00
|
|
|
"Flarum\\Subscriptions\\": "src/"
|
2015-06-26 10:54:07 +08:00
|
|
|
}
|
2015-09-04 10:06:03 +08:00
|
|
|
},
|
2015-10-11 15:00:11 +08:00
|
|
|
"extra": {
|
2016-01-19 14:47:56 +08:00
|
|
|
"branch-alias": {
|
2023-05-31 16:50:39 +08:00
|
|
|
"dev-main": "2.x-dev"
|
2016-01-19 14:47:56 +08:00
|
|
|
},
|
2015-10-11 15:00:11 +08:00
|
|
|
"flarum-extension": {
|
|
|
|
"title": "Subscriptions",
|
2021-03-09 03:33:13 +08:00
|
|
|
"category": "feature",
|
2022-11-07 19:52:28 +08:00
|
|
|
"optional-dependencies": [
|
|
|
|
"flarum/approval"
|
|
|
|
],
|
2015-10-11 15:00:11 +08:00
|
|
|
"icon": {
|
2018-05-10 16:04:42 +08:00
|
|
|
"name": "fas fa-star",
|
2015-10-11 15:00:11 +08:00
|
|
|
"backgroundColor": "#ffea7b",
|
|
|
|
"color": "#de8e00"
|
|
|
|
}
|
2022-01-20 16:55:30 +08:00
|
|
|
},
|
|
|
|
"flarum-cli": {
|
|
|
|
"modules": {
|
|
|
|
"admin": false,
|
|
|
|
"forum": true,
|
|
|
|
"js": true,
|
|
|
|
"jsCommon": false,
|
|
|
|
"css": true,
|
|
|
|
"gitConf": true,
|
|
|
|
"githubActions": true,
|
|
|
|
"prettier": true,
|
|
|
|
"typescript": false,
|
|
|
|
"bundlewatch": false,
|
2022-06-04 03:06:30 +08:00
|
|
|
"backendTesting": true,
|
2022-01-20 16:55:30 +08:00
|
|
|
"editorConfig": true,
|
|
|
|
"styleci": true
|
|
|
|
}
|
2015-10-11 15:00:11 +08:00
|
|
|
}
|
2022-03-12 07:02:49 +08:00
|
|
|
},
|
2022-03-12 07:02:51 +08:00
|
|
|
"repositories": [
|
|
|
|
{
|
2022-03-12 07:02:49 +08:00
|
|
|
"type": "path",
|
|
|
|
"url": "../../*/*"
|
2022-03-12 07:02:51 +08:00
|
|
|
}
|
|
|
|
],
|
2022-03-12 07:02:49 +08:00
|
|
|
"minimum-stability": "dev",
|
2022-06-04 03:06:30 +08:00
|
|
|
"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": {
|
2023-05-31 16:53:59 +08:00
|
|
|
"flarum/testing": "^2.0",
|
2022-11-07 19:52:28 +08:00
|
|
|
"flarum/approval": "@dev"
|
2022-06-04 03:06:30 +08:00
|
|
|
}
|
2015-10-11 15:14:35 +08:00
|
|
|
}
|