|
| 1 | +{ |
| 2 | + "name": "glowingblue/save-sorting-preferences", |
| 3 | + "description": "Allows users to persist their preferred sort order of discussions", |
| 4 | + "keywords": [ |
| 5 | + "flarum" |
| 6 | + ], |
| 7 | + "type": "flarum-extension", |
| 8 | + "license": "MIT", |
| 9 | + "require": { |
| 10 | + "flarum/core": "^1.2.0" |
| 11 | + }, |
| 12 | + "authors": [ |
| 13 | + { |
| 14 | + "name": "Team Blomstra", |
| 15 | + "email": "development@blomstra.net", |
| 16 | + "role": "Developer" |
| 17 | + }, |
| 18 | + { |
| 19 | + "name": "Glowing Blue AG", |
| 20 | + "email": "dev@glowingblue.com", |
| 21 | + "role": "Developer" |
| 22 | + } |
| 23 | + ], |
| 24 | + "support": { |
| 25 | + "issues": "https://github.com/glowingblue/flarum-ext-save-sorting-preferences/issues", |
| 26 | + "source": "https://github.com/glowingblue/flarum-ext-save-sorting-preferences" |
| 27 | + }, |
| 28 | + "autoload": { |
| 29 | + "psr-4": { |
| 30 | + "GlowingBlue\\SaveSortingPreferences\\": "src/" |
| 31 | + } |
| 32 | + }, |
| 33 | + "extra": { |
| 34 | + "flarum-extension": { |
| 35 | + "title": "GB Save Sorting Preferences", |
| 36 | + "category": "feature", |
| 37 | + "icon": { |
| 38 | + "name": "fas fa-sort-alpha-down", |
| 39 | + "backgroundColor": "#00a7e3", |
| 40 | + "color": "#fff" |
| 41 | + } |
| 42 | + }, |
| 43 | + "flarum-cli": { |
| 44 | + "modules": { |
| 45 | + "admin": false, |
| 46 | + "forum": true, |
| 47 | + "js": true, |
| 48 | + "jsCommon": false, |
| 49 | + "css": false, |
| 50 | + "locale": true, |
| 51 | + "gitConf": true, |
| 52 | + "githubActions": true, |
| 53 | + "prettier": true, |
| 54 | + "typescript": true, |
| 55 | + "bundlewatch": true, |
| 56 | + "backendTesting": true, |
| 57 | + "editorConfig": true, |
| 58 | + "styleci": false |
| 59 | + } |
| 60 | + } |
| 61 | + }, |
| 62 | + "minimum-stability": "dev", |
| 63 | + "prefer-stable": true, |
| 64 | + "autoload-dev": { |
| 65 | + "psr-4": { |
| 66 | + "GlowingBlue\\SaveSortingPreferences\\Tests\\": "tests/" |
| 67 | + } |
| 68 | + }, |
| 69 | + "scripts": { |
| 70 | + "analyse:phpstan": "phpstan analyse", |
| 71 | + "clear-cache:phpstan": "phpstan clear-result-cache", |
| 72 | + "test": [ |
| 73 | + "@test:unit", |
| 74 | + "@test:integration" |
| 75 | + ], |
| 76 | + "test:unit": "phpunit -c tests/phpunit.unit.xml", |
| 77 | + "test:integration": "phpunit -c tests/phpunit.integration.xml", |
| 78 | + "test:setup": "@php tests/integration/setup.php" |
| 79 | + }, |
| 80 | + "scripts-descriptions": { |
| 81 | + "analyse:phpstan": "Run static analysis", |
| 82 | + "test": "Runs all tests.", |
| 83 | + "test:unit": "Runs all unit tests.", |
| 84 | + "test:integration": "Runs all integration tests.", |
| 85 | + "test:setup": "Sets up a database for use with integration tests. Execute this only once." |
| 86 | + }, |
| 87 | + "require-dev": { |
| 88 | + "flarum/phpstan": "^1.8", |
| 89 | + "flarum/testing": "^1.0.0" |
| 90 | + } |
| 91 | +} |
0 commit comments