Files
nexusphp/composer.json

111 lines
3.2 KiB
JSON
Raw Normal View History

2021-01-13 19:32:26 +08:00
{
"name": "xiaomlove/nexusphp",
2021-01-28 20:37:35 +08:00
"description": "A private tracker application base on NexusPHP.",
2021-01-13 19:32:26 +08:00
"type": "project",
"license": "GPL-2.0-only",
"authors": [
{
"name": "xiaomlove",
"email": "1939737565@qq.com"
}
],
"autoload": {
"psr-4": {
2021-04-02 19:48:41 +08:00
"Nexus\\": "nexus/",
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
2024-12-25 23:09:07 +08:00
"files": []
2021-01-13 19:32:26 +08:00
},
"require": {
2025-12-20 14:11:07 +08:00
"php": ">=8.2 <8.6",
2022-03-17 18:46:49 +08:00
"ext-bcmath": "*",
2022-06-27 01:39:01 +08:00
"ext-curl": "*",
2021-01-27 16:26:37 +08:00
"ext-gd": "*",
2022-11-23 17:34:45 +08:00
"ext-gmp": "*",
"ext-intl": "*",
2021-04-22 03:24:59 +08:00
"ext-json": "*",
2021-01-27 16:26:37 +08:00
"ext-mbstring": "*",
"ext-mysqli": "*",
2022-03-31 22:22:04 +08:00
"ext-pcntl": "*",
2025-04-17 01:39:40 +07:00
"ext-posix": "*",
"ext-redis": "*",
2025-06-29 20:47:23 +07:00
"ext-sqlite3": "*",
2022-03-17 18:46:49 +08:00
"ext-xml": "*",
2022-10-27 20:21:54 +08:00
"ext-zend-opcache": "*",
"ext-zip": "*",
"calebporzio/sushi": "^2.5",
2025-06-29 20:47:23 +07:00
"cybercog/laravel-clickhouse": "dev-master",
2022-04-04 17:26:26 +08:00
"elasticsearch/elasticsearch": "^7.16",
2026-01-18 19:17:29 +08:00
"filament/filament": "~5.0",
"flowframe/laravel-trend": "^0.4",
2021-06-07 03:38:50 +08:00
"geoip2/geoip2": "~2.0",
2024-12-25 22:30:55 +08:00
"google/auth": "1.44.0",
2026-02-17 14:36:24 +08:00
"imdbphp/imdbphp": "8.3.1",
2024-04-01 02:35:11 +08:00
"irazasyed/telegram-bot-sdk": "^3.11",
"laravel/framework": "^12.0",
"laravel/horizon": "^5.31",
2024-12-25 22:30:55 +08:00
"laravel/passport": "^12.0",
"laravel/sanctum": "^4.0",
2021-04-22 03:24:59 +08:00
"laravel/tinker": "^2.5",
2025-03-09 14:34:25 +08:00
"lbuchs/webauthn": "^2.2",
2022-05-12 19:03:30 +08:00
"league/flysystem-sftp-v3": "^3.0",
2023-04-01 21:55:02 +08:00
"meilisearch/meilisearch-php": "^1.0",
2021-06-08 10:42:39 +08:00
"orangehill/iseed": "^3.0",
2021-06-10 21:07:20 +08:00
"phpgangsta/googleauthenticator": "dev-master",
2026-01-09 13:10:51 +08:00
"rhilip/bencode": "^2.5.0",
2025-04-17 01:39:40 +07:00
"rlanvin/php-ip": "^3.0",
2025-10-12 03:48:04 +07:00
"spatie/laravel-activitylog": "^4.10",
2025-04-17 01:39:40 +07:00
"stichoza/google-translate-php": "^5.2"
2021-04-02 19:48:41 +08:00
},
"require-dev": {
"fakerphp/faker": "^1.23",
2024-12-25 22:30:55 +08:00
"kitloong/laravel-migrations-generator": "^7.0",
"laravel-lang/lang": "^15.10",
"laravel-lang/publisher": "^16.0",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.6",
"phpunit/phpunit": "^11.0"
2021-04-02 19:48:41 +08:00
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
2024-12-25 23:09:07 +08:00
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
2021-04-02 19:48:41 +08:00
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php artisan passport:keys"
2021-04-02 19:48:41 +08:00
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
2022-07-23 15:05:32 +08:00
],
"post-update-cmd": [
"@php artisan filament:upgrade"
2021-04-02 19:48:41 +08:00
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
2022-06-03 03:42:53 +08:00
"sort-packages": true,
2023-04-01 21:55:02 +08:00
"secure-http": false,
"allow-plugins": {
"php-http/discovery": true
},
"process-timeout": 900
2021-04-02 19:48:41 +08:00
},
"minimum-stability": "dev",
"prefer-stable": true
2021-01-13 19:32:26 +08:00
}