|
| 1 | +{ |
| 2 | + "name": "mooxphp/moox", |
| 3 | + "type": "project", |
| 4 | + "description": "The Moox Monorepo - a Laravel Demo App and our Homepage", |
| 5 | + "keywords": [ |
| 6 | + "framework", |
| 7 | + "laravel", |
| 8 | + "package", |
| 9 | + "admin", |
| 10 | + "dashboard", |
| 11 | + "components", |
| 12 | + "tall-stack", |
| 13 | + "livewire", |
| 14 | + "tailwindcss" |
| 15 | + ], |
| 16 | + "repositories": [ |
| 17 | + { |
| 18 | + "type": "path", |
| 19 | + "url": "packages/*" |
| 20 | + } |
| 21 | + ], |
| 22 | + "license": "MIT", |
| 23 | + "require": { |
| 24 | + "laravel-lang/lang": "^15.5", |
| 25 | + "laravel/framework": "^11.0", |
| 26 | + "laravel/tinker": "^2.8", |
| 27 | + "moox/audit": "*", |
| 28 | + "moox/builder": "*", |
| 29 | + "moox/expiry": "*", |
| 30 | + "moox/flags": "*", |
| 31 | + "moox/frontend": "*", |
| 32 | + "moox/jobs": "*", |
| 33 | + "moox/locate": "*", |
| 34 | + "moox/login-link": "*", |
| 35 | + "moox/notifications": "*", |
| 36 | + "moox/page": "*", |
| 37 | + "moox/passkey": "*", |
| 38 | + "moox/permission": "*", |
| 39 | + "moox/press": "*", |
| 40 | + "moox/press-trainings": "*", |
| 41 | + "moox/press-wiki": "*", |
| 42 | + "moox/security": "*", |
| 43 | + "moox/skeleton": "*", |
| 44 | + "moox/slug": "*", |
| 45 | + "moox/trainings": "*", |
| 46 | + "moox/user": "*", |
| 47 | + "moox/user-device": "*", |
| 48 | + "moox/user-session": "*", |
| 49 | + "resend/resend-laravel": "^1.0@dev", |
| 50 | + "wikimedia/composer-merge-plugin": "^2.1" |
| 51 | + }, |
| 52 | + "require-dev": { |
| 53 | + "moox/devlink": "*", |
| 54 | + "fakerphp/faker": "^1.23.1", |
| 55 | + "larastan/larastan": "^3.0", |
| 56 | + "laravel/pint": "^1.0", |
| 57 | + "laravel/sail": "^1.26", |
| 58 | + "nunomaduro/collision": "^8.0", |
| 59 | + "pestphp/pest": "^3.0", |
| 60 | + "pestphp/pest-plugin-laravel": "^3.0", |
| 61 | + "pestphp/pest-plugin-livewire": "^3.0", |
| 62 | + "phpstan/extension-installer": "^1.1", |
| 63 | + "phpstan/phpstan": "^2.0", |
| 64 | + "rector/rector": "^2.0", |
| 65 | + "spatie/laravel-ignition": "^2.3", |
| 66 | + "spatie/laravel-ray": "^1.33" |
| 67 | + }, |
| 68 | + "autoload": { |
| 69 | + "psr-4": { |
| 70 | + "App\\": "app/", |
| 71 | + "Database\\Factories\\": "database/factories/", |
| 72 | + "Database\\Seeders\\": "database/seeders/" |
| 73 | + } |
| 74 | + }, |
| 75 | + "autoload-dev": { |
| 76 | + "psr-4": { |
| 77 | + "Tests\\": "tests/" |
| 78 | + } |
| 79 | + }, |
| 80 | + "scripts": { |
| 81 | + "post-autoload-dump": [ |
| 82 | + "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", |
| 83 | + "@php artisan package:discover --ansi", |
| 84 | + "@php artisan filament:upgrade" |
| 85 | + ], |
| 86 | + "post-update-cmd": [ |
| 87 | + "@php artisan vendor:publish --tag=laravel-assets --ansi --force" |
| 88 | + ], |
| 89 | + "post-root-package-install": [ |
| 90 | + "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" |
| 91 | + ], |
| 92 | + "post-create-project-cmd": [ |
| 93 | + "@php artisan key:generate --ansi" |
| 94 | + ], |
| 95 | + "analyse": "./vendor/bin/phpstan analyze --memory-limit 512m", |
| 96 | + "analyze": "@analyse", |
| 97 | + "pint": "vendor/bin/pint", |
| 98 | + "format": "@pint", |
| 99 | + "lint": "@pint --test", |
| 100 | + "rector": "vendor/bin/rector", |
| 101 | + "refactor": "@rector", |
| 102 | + "pest": "vendor/bin/pest", |
| 103 | + "test:coverage": "@pest --coverage", |
| 104 | + "test:lint": "@lint", |
| 105 | + "test:refactor": "@rector --dry-run", |
| 106 | + "test:types": "@analyse", |
| 107 | + "test:arch": "@pest --filter=arch", |
| 108 | + "test:type-coverage": "@pest --type-coverage --min=100", |
| 109 | + "test:unit": "@pest --parallel --coverage --exactly=99.4", |
| 110 | + "test": [ |
| 111 | + "@test:lint", |
| 112 | + "@test:refactor", |
| 113 | + "@test:types", |
| 114 | + "@test:type-coverage", |
| 115 | + "@test:unit" |
| 116 | + ] |
| 117 | + }, |
| 118 | + "extra": { |
| 119 | + "laravel": { |
| 120 | + "dont-discover": [] |
| 121 | + }, |
| 122 | + "merge-plugin": { |
| 123 | + "include": [ |
| 124 | + "_custom/composer.json" |
| 125 | + ], |
| 126 | + "recurse": true, |
| 127 | + "replace": false, |
| 128 | + "ignore-duplicates": false, |
| 129 | + "merge-dev": true, |
| 130 | + "merge-extra": false, |
| 131 | + "merge-extra-deep": false, |
| 132 | + "merge-replace": true, |
| 133 | + "merge-scripts": false |
| 134 | + } |
| 135 | + }, |
| 136 | + "config": { |
| 137 | + "optimize-autoloader": true, |
| 138 | + "preferred-install": "dist", |
| 139 | + "sort-packages": true, |
| 140 | + "allow-plugins": { |
| 141 | + "pestphp/pest-plugin": true, |
| 142 | + "phpstan/extension-installer": true, |
| 143 | + "wikimedia/composer-merge-plugin": true, |
| 144 | + "roots/wordpress-core-installer": true |
| 145 | + } |
| 146 | + }, |
| 147 | + "minimum-stability": "dev", |
| 148 | + "prefer-stable": false |
| 149 | +} |
0 commit comments