mirror of
https://ghproxy.net/https://github.com/aspirepress/AspireCloud.git
synced 2025-10-04 19:51:10 +08:00
99 lines
3.3 KiB
JSON
99 lines
3.3 KiB
JSON
{
|
|
"name": "aspirepress/aspirecloud",
|
|
"type": "project",
|
|
"description": "AspirePress API server implementation",
|
|
"keywords": ["aspirepress", "wordpress", "wp"],
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.3",
|
|
"ext-mbstring": "*",
|
|
"dshafik/bag": "^2.5",
|
|
"inertiajs/inertia-laravel": "^2.0.1",
|
|
"laravel/framework": "^12.4.1",
|
|
"laravel/jetstream": "^5.3.5",
|
|
"laravel/sanctum": "^4.0.8",
|
|
"laravel/telescope": "^5.6.0",
|
|
"laravel/tinker": "^2.10.1",
|
|
"league/flysystem-aws-s3-v3": "^3.29",
|
|
"predis/predis": "^2.3.0",
|
|
"spatie/laravel-permission": "^6.16.0",
|
|
"symfony/http-client": "^7.2.4",
|
|
"symfony/mailgun-mailer": "^7.2",
|
|
"thecodingmachine/safe": "^3.0.2",
|
|
"tightenco/ziggy": "^2.5.2"
|
|
},
|
|
"require-dev": {
|
|
"barryvdh/laravel-ide-helper": "^3.5.5",
|
|
"fakerphp/faker": "^1.24.1",
|
|
"larastan/larastan": "^3.2",
|
|
"laravel/pail": "^1.2.2",
|
|
"laravel/pint": "^1.21.2",
|
|
"mockery/mockery": "^1.6.12",
|
|
"nunomaduro/collision": "^8.7",
|
|
"pestphp/pest": "^3.8.0",
|
|
"pestphp/pest-plugin-laravel": "^3.1",
|
|
"phpstan/phpstan": "^2.1.11",
|
|
"roave/security-advisories": "dev-latest",
|
|
"spatie/laravel-web-tinker": "^1.10.1",
|
|
"thecodingmachine/phpstan-safe-rule": "^1.4"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/",
|
|
"Database\\Factories\\": "database/factories/",
|
|
"Database\\Seeders\\": "database/seeders/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"check": [
|
|
"@format:check",
|
|
"@lint"
|
|
],
|
|
"format": "@pint",
|
|
"format:check": "@pint --test",
|
|
"lint": "@phpstan",
|
|
"phpstan": "phpstan --memory-limit=2G --verbose",
|
|
"pint": "pint",
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi",
|
|
"@php artisan storage:link --quiet --force"
|
|
],
|
|
"post-update-cmd": [
|
|
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi",
|
|
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
|
|
"@php artisan migrate --graceful --ansi"
|
|
],
|
|
"dev": [
|
|
"Composer\\Config::disableProcessTimeout",
|
|
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail\" \"yarn run dev\" --names=server,queue,logs,vite"
|
|
]
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": []
|
|
}
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true,
|
|
"php-http/discovery": true
|
|
}
|
|
},
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true
|
|
}
|