framework/extensions/nicknames/composer.json

88 lines
2.4 KiB
JSON
Raw Normal View History

2020-11-24 12:17:55 +08:00
{
2022-01-20 16:47:04 +08:00
"name": "flarum/nicknames",
"description": "Allow users to set nicknames.",
"type": "flarum-extension",
"keywords": [
"nicknames"
],
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/framework/issues",
2022-01-20 16:47:04 +08:00
"source": "https://github.com/flarum/nicknames",
"forum": "https://discuss.flarum.org"
2020-11-24 12:17:55 +08:00
},
2022-01-20 16:47:04 +08:00
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2022-01-20 16:47:04 +08:00
"require": {
2022-09-13 16:55:30 +08:00
"flarum/core": "^1.5"
2022-01-20 16:47:04 +08:00
},
"autoload": {
"psr-4": {
"Flarum\\Nicknames\\": "src/"
}
},
"extra": {
"branch-alias": {
2022-03-12 07:02:49 +08:00
"dev-main": "1.x-dev"
2022-01-20 16:47:04 +08:00
},
"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": "^1.0.0",
"flarum/core": "1.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."
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
2020-11-24 12:17:55 +08:00
}