framework/extensions/flags/composer.json

89 lines
2.4 KiB
JSON
Raw Normal View History

2015-09-04 11:56:51 +08:00
{
2022-01-20 16:32:36 +08:00
"name": "flarum/flags",
"description": "Allow users to flag posts for moderator review.",
"type": "flarum-extension",
"keywords": [
"moderation"
],
"license": "MIT",
"support": {
"issues": "https://github.com/flarum/framework/issues",
2022-01-20 16:32:36 +08:00
"source": "https://github.com/flarum/flags",
"forum": "https://discuss.flarum.org"
2015-09-04 11:56:51 +08:00
},
2022-01-20 16:32:36 +08:00
"homepage": "https://flarum.org",
"funding": [
{
"type": "website",
"url": "https://flarum.org/donate/"
}
],
2022-01-20 16:32:36 +08:00
"require": {
"flarum/core": "^2.0"
2022-01-20 16:32:36 +08:00
},
"autoload": {
"psr-4": {
"Flarum\\Flags\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
2022-01-20 16:32:36 +08:00
},
"flarum-extension": {
"title": "Flags",
"category": "feature",
"icon": {
"name": "fas fa-flag",
"backgroundColor": "#D659B5",
"color": "#fff"
}
},
"flarum-cli": {
"modules": {
"admin": true,
"forum": true,
"js": true,
"jsCommon": false,
"css": true,
"gitConf": true,
"githubActions": true,
"prettier": true,
fix: Assorted Typing Fixes (#3348) With all the commits below, we resolve all outstanding typing issues in the repo, and CI jobs run green. * fix: Convert DashboardPage and DashboardWidget to TypeScript * fix: fix type errors in package manager ext * fix: Convert Post component to TypeScript * fix: avatar typings should accept null user * fix: convert Notification component to TypeScript * fix: properly use `typeof` in ForumApplication * feat: make Notification content attr generic * chore: format Notification component * fix: Convert DiscussionRenamedNotification to TypeScript * fix(pusher) move shims to a location where they get applied * fix(pusher): fix some typing errors * fix(akismet): fix some typing issues * chore: update core dist typings * chore(pusher): format * fix: anchorScroll should accept string selectors * fix: more accurately represent ApiQueryParamsPlural * fix: convert PostStreamState to TypeScript * chore(core): rebuild typings * feat: allow extending app.routes * fix: more flexible typings for highlight.ts * fix: use primitive `number` type for Discussion typings * fix: convert DiscussionListItem to TypeScript * chore: rebuild core typings * fix: final pusher type fixes * feat: start tags TypeScript conversion * fix: require-dev tags in pusher for CI TypeScript purposes. * chore(core): format * chore(tags): build dist typings * feat(pusher): use dist types from tags. * feat: convert flags to TypeScript * chore(flags): generate dist typings * fix(akismet): last type errors * chore: update .yarn-integrity * chore: partially run flarum-cli audit infra --fix The tsconfig changes from that command are ignored, since we don't yet support "replacable sections" that would let us add custom config. * chore: use type imports * fix: broader gitattributes * chore: run flarum-cli audit infra --monorepo --fix * feat: make `app.data` typings extensible * chore(core): format * chore: boost tags TypeScript coverage * fix(tags): further increase type coverage.
2022-03-23 23:43:14 +08:00
"typescript": true,
2022-01-20 16:32:36 +08:00
"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"
},
"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/core": "*@dev",
"flarum/tags": "*@dev",
"flarum/testing": "^2.0"
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
2015-09-04 11:56:51 +08:00
}