framework/extensions/mentions/composer.json

88 lines
2.3 KiB
JSON
Raw Normal View History

2015-05-14 20:31:03 +08:00
{
2018-10-17 11:14:48 +08:00
"name": "flarum/mentions",
2015-10-11 10:32:57 +08:00
"description": "Mention and reply to specific posts and users.",
"type": "flarum-extension",
2021-04-14 05:27:42 +08:00
"keywords": [
"discussion"
],
2015-10-11 10:32:57 +08:00
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/mentions",
"forum": "https://discuss.flarum.org"
2015-10-11 10:32:57 +08:00
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-11 10:32:57 +08:00
"require": {
2022-05-10 22:28:35 +08:00
"flarum/core": "^1.3"
2015-10-11 10:32:57 +08:00
},
2015-05-14 20:31:03 +08:00
"autoload": {
"psr-4": {
"Flarum\\Mentions\\": "src/"
}
},
2015-10-11 10:32:57 +08:00
"extra": {
"branch-alias": {
2022-03-12 07:02:49 +08:00
"dev-main": "1.x-dev"
},
2015-10-11 10:32:57 +08:00
"flarum-extension": {
"title": "Mentions",
2021-03-09 03:21:21 +08:00
"category": "feature",
2015-10-11 10:32:57 +08:00
"icon": {
2018-05-10 16:01:02 +08:00
"name": "fas fa-at",
2015-10-11 10:32:57 +08:00
"backgroundColor": "#539EC1",
"color": "#fff"
}
2022-01-20 16:45:09 +08:00
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": false,
"css": true,
"gitConf": true,
"githubActions": true,
"prettier": true,
"typescript": false,
"bundlewatch": false,
"backendTesting": true,
"editorConfig": true,
"styleci": true
}
2015-10-11 10:32:57 +08:00
}
2021-04-14 05:27:42 +08:00
},
"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": {
2021-05-17 06:28:41 +08:00
"flarum/core": "*@dev",
2022-01-20 16:45:09 +08:00
"flarum/testing": "^1.0.0"
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
2015-05-14 20:31:03 +08:00
}