mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 01:23:08 +08:00
b74ecbfacf
* feat: private messages
81 lines
2.1 KiB
JSON
81 lines
2.1 KiB
JSON
{
|
|
"name": "flarum/messages",
|
|
"description": "Private messaging ",
|
|
"keywords": [
|
|
"flarum"
|
|
],
|
|
"type": "flarum-extension",
|
|
"license": "MIT",
|
|
"require": {
|
|
"flarum/core": "^2.0"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Flarum",
|
|
"email": "info@flarum.org",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Flarum\\Messages\\": "src/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"flarum-extension": {
|
|
"title": "Messages",
|
|
"category": "feature",
|
|
"icon": {
|
|
"name": "fas fa-envelope-open",
|
|
"color": "#ffffff",
|
|
"backgroundColor": "#9b34c7"
|
|
}
|
|
},
|
|
"flarum-cli": {
|
|
"modules": {
|
|
"admin": true,
|
|
"forum": true,
|
|
"js": true,
|
|
"jsCommon": true,
|
|
"css": true,
|
|
"locale": true,
|
|
"gitConf": true,
|
|
"githubActions": true,
|
|
"prettier": true,
|
|
"typescript": true,
|
|
"bundlewatch": false,
|
|
"frontendTesting": true,
|
|
"backendTesting": true,
|
|
"phpstan": false,
|
|
"editorConfig": true,
|
|
"styleci": true
|
|
}
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Flarum\\Messages\\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"
|
|
}
|
|
}
|