mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 02:30:10 +08:00
951f58e567
Signed-off-by: Sami Mazouz <sychocouldy@gmail.com>
88 lines
2.3 KiB
JSON
88 lines
2.3 KiB
JSON
{
|
|
"name": "flarum/nicknames",
|
|
"description": "Allow users to set nicknames.",
|
|
"type": "flarum-extension",
|
|
"keywords": [
|
|
"nicknames"
|
|
],
|
|
"license": "MIT",
|
|
"support": {
|
|
"issues": "https://github.com/flarum/framework/issues",
|
|
"source": "https://github.com/flarum/nicknames",
|
|
"forum": "https://discuss.flarum.org"
|
|
},
|
|
"homepage": "https://flarum.org",
|
|
"funding": [
|
|
{
|
|
"type": "website",
|
|
"url": "https://flarum.org/donate/"
|
|
}
|
|
],
|
|
"require": {
|
|
"flarum/core": "^2.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Flarum\\Nicknames\\": "src/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-main": "2.x-dev"
|
|
},
|
|
"flarum-extension": {
|
|
"title": "Nicknames",
|
|
"category": "feature",
|
|
"icon": {
|
|
"name": "fas fa-user-tag",
|
|
"backgroundColor": "#8E4529",
|
|
"color": "#ffffff"
|
|
}
|
|
},
|
|
"flarum-cli": {
|
|
"modules": {
|
|
"admin": true,
|
|
"forum": true,
|
|
"js": true,
|
|
"jsCommon": false,
|
|
"css": false,
|
|
"gitConf": true,
|
|
"githubActions": true,
|
|
"prettier": true,
|
|
"typescript": false,
|
|
"bundlewatch": false,
|
|
"backendTesting": true,
|
|
"editorConfig": true,
|
|
"styleci": true
|
|
}
|
|
}
|
|
},
|
|
"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"
|
|
},
|
|
"require-dev": {
|
|
"flarum/testing": "^2.0",
|
|
"flarum/core": "2.x-dev"
|
|
},
|
|
"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."
|
|
},
|
|
"repositories": [
|
|
{
|
|
"type": "path",
|
|
"url": "../../*/*"
|
|
}
|
|
],
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true
|
|
}
|