framework/extensions/mentions/composer.json

63 lines
1.7 KiB
JSON
Raw Normal View History

2015-05-14 22:01:03 +09:30
{
2018-10-17 13:44:48 +10:30
"name": "flarum/mentions",
2015-10-11 13:02:57 +10:30
"description": "Mention and reply to specific posts and users.",
"type": "flarum-extension",
2021-04-13 22:27:42 +01:00
"keywords": [
"discussion"
],
2015-10-11 13:02:57 +10:30
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/core/issues",
"source": "https://github.com/flarum/mentions",
"forum": "https://discuss.flarum.org"
2015-10-11 13:02:57 +10:30
},
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2015-10-11 13:02:57 +10:30
"require": {
"flarum/core": "^1.1"
2015-10-11 13:02:57 +10:30
},
2015-05-14 22:01:03 +09:30
"autoload": {
"psr-4": {
"Flarum\\Mentions\\": "src/"
}
},
2015-10-11 13:02:57 +10:30
"extra": {
"branch-alias": {
2021-05-25 22:51:07 +02:00
"dev-master": "1.x-dev"
},
2015-10-11 13:02:57 +10:30
"flarum-extension": {
"title": "Mentions",
2021-03-08 11:21:21 -08:00
"category": "feature",
2015-10-11 13:02:57 +10:30
"icon": {
2018-05-10 15:01:02 +07:00
"name": "fas fa-at",
2015-10-11 13:02:57 +10:30
"backgroundColor": "#539EC1",
"color": "#fff"
}
}
2021-04-13 22:27:42 +01: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-16 18:28:41 -04:00
"flarum/core": "*@dev",
"flarum/testing": "*@dev"
2015-05-14 22:01:03 +09:30
}
}