framework/extensions/subscriptions/composer.json

96 lines
2.6 KiB
JSON
Raw Normal View History

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": {
"issues": "https://github.com/flarum/framework/issues",
"source": "https://github.com/flarum/subscriptions",
"forum": "https://discuss.flarum.org"
2015-10-11 15:00:11 +08:00
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-11 15:00:11 +08:00
"require": {
"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-10-11 15:00:11 +08:00
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
},
2015-10-11 15:00:11 +08:00
"flarum-extension": {
"title": "Subscriptions",
2021-03-09 03:33:13 +08:00
"category": "feature",
"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,
"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",
"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": "^2.0",
"flarum/approval": "@dev"
}
2015-10-11 15:14:35 +08:00
}