framework/extensions/messages/composer.json
Sami Mazouz b74ecbfacf
feat: messages extension (#4028)
* feat: private messages
2024-09-28 11:12:52 +01:00

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"
}
}