| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- {
- "name": "proxypanel/proxypanel",
- "type": "project",
- "description": "Proxy panel is a proxy account management system, it supports shadowsocks, shadowsocksr, v2ray, trojan and more.",
- "keywords": [
- "laravel",
- "proxypanel"
- ],
- "license": "GPL-3.0-or-later",
- "require": {
- "php": "^8.1",
- "ext-dom": "*",
- "ext-json": "*",
- "ext-mbstring": "*",
- "ext-openssl": "*",
- "ext-pdo": "*",
- "ext-simplexml": "*",
- "arcanedev/log-viewer": "^10.0",
- "geoip2/geoip2": "^v3.0",
- "guzzlehttp/guzzle": "^7.2",
- "hashids/hashids": "^5.0",
- "ip2location/ip2location-laravel": "^1.2",
- "ipip/db": "^1.0",
- "jenssegers/agent": "^2.6",
- "kyslik/column-sortable": "^6.4",
- "laravel-notification-channels/telegram": "^5.0",
- "laravel/framework": "^10.8",
- "laravel/horizon": "^5.15",
- "laravel/sanctum": "^3.2",
- "laravel/socialite": "^5.6",
- "laravel/tinker": "^2.8",
- "mews/captcha": "^3.2",
- "mews/purifier": "^3.3",
- "phpoffice/phpspreadsheet": "^2.2",
- "romanzipp/laravel-turnstile": "^1.1",
- "socialiteproviders/telegram": "^4.1",
- "spatie/laravel-permission": "^5.10",
- "srmklive/paypal": "^3.0",
- "stripe/stripe-php": "^15.9",
- "symfony/yaml": "^6.2",
- "xhat/payjs": "^1.5",
- "zbrettonye/geetest": "^1",
- "zbrettonye/hcaptcha": "^1",
- "zbrettonye/no-captcha": "^1",
- "zoujingli/ip2region": "^2.0"
- },
- "require-dev": {
- "barryvdh/laravel-debugbar": "^3.4",
- "barryvdh/laravel-ide-helper": "^3.1",
- "fakerphp/faker": "^1.9",
- "laravel-lang/common": "^6.0",
- "laravel-lang/lang":"^14.0",
- "laravel/pint": "^1.10",
- "laravel/telescope": "^5.2",
- "mockery/mockery": "^1.4.4",
- "nunomaduro/collision": "^7.0",
- "phpunit/phpunit": "^10.1",
- "spatie/laravel-ignition": "^2.0"
- },
- "autoload": {
- "psr-4": {
- "App\\": "app/",
- "Database\\Factories\\": "database/factories/",
- "Database\\Seeders\\": "database/seeders/"
- },
- "files": [
- "app/helpers.php"
- ]
- },
- "autoload-dev": {
- "psr-4": {
- "Tests\\": "tests/"
- }
- },
- "scripts": {
- "post-autoload-dump": [
- "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
- "@php artisan package:discover --ansi"
- ],
- "post-update-cmd": [
- "@php artisan vendor:publish --tag=laravel-assets --ansi --force",
- "@php artisan ide-helper:generate",
- "@php artisan ide-helper:meta"
- ],
- "post-root-package-install": [
- "@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
- ],
- "post-create-project-cmd": [
- "@php artisan key:generate --ansi"
- ]
- },
- "extra": {
- "laravel": {
- "dont-discover": [
- "barryvdh/laravel-debugbar",
- "barryvdh/laravel-ide-helper",
- "laravel/telescope"
- ]
- }
- },
- "config": {
- "platform": {
- "ext-pcntl": "8.0",
- "ext-posix": "8.0"
- },
- "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
- }
|