mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-03 11:09:27 +00:00
107 lines
2.8 KiB
JSON
107 lines
2.8 KiB
JSON
{
|
|
"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": "^7.2.5",
|
|
"ext-dom": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-openssl": "*",
|
|
"ext-simplexml": "*",
|
|
"arcanedev/log-viewer": "~7.0",
|
|
"doctrine/dbal": "^2.12",
|
|
"fideloper/proxy": "^4.4",
|
|
"fruitcake/laravel-cors": "^2.0",
|
|
"geoip2/geoip2": "^v2.11",
|
|
"guzzlehttp/guzzle": "^6.3.1|^7.0.1",
|
|
"hashids/hashids": "^4.1",
|
|
"ip2location/ip2location-laravel": "^1.2",
|
|
"ipip/db": "^1.0",
|
|
"jenssegers/agent": "^2.6",
|
|
"kyslik/column-sortable": "^6.4",
|
|
"laravel-notification-channels/bearychat": "^1.4",
|
|
"laravel-notification-channels/telegram": "^0.5",
|
|
"laravel/framework": "^7.30",
|
|
"laravel/socialite": "^5.2",
|
|
"laravel/tinker": "^2.6",
|
|
"mews/captcha": "^3.2",
|
|
"mews/purifier": "^3.3",
|
|
"overtrue/laravel-lang": "~5.0",
|
|
"phpoffice/phpspreadsheet": "^1.16",
|
|
"riverslei/payment": "^5.1",
|
|
"socialiteproviders/telegram": "^4.1",
|
|
"spatie/laravel-permission": "^4.0",
|
|
"srmklive/paypal": "^1.8",
|
|
"stripe/stripe-php": "^7.69",
|
|
"symfony/yaml": "^5.2",
|
|
"tymon/jwt-auth": "^1.0",
|
|
"xhat/payjs": "^1.5",
|
|
"zbrettonye/geetest": "^1.2",
|
|
"zbrettonye/hcaptcha": "^1.1",
|
|
"zbrettonye/no-captcha": "^1.1",
|
|
"zoujingli/ip2region": "^1.0"
|
|
},
|
|
"require-dev": {
|
|
"arcanedev/laravel-lang": "^8.0",
|
|
"barryvdh/laravel-debugbar": "^3.4",
|
|
"barryvdh/laravel-ide-helper": "^2.8",
|
|
"facade/ignition": "^2.0",
|
|
"fakerphp/faker": "^1.9.1",
|
|
"laravel/telescope": "^3.5",
|
|
"mockery/mockery": "^1.3.1",
|
|
"nunomaduro/collision": "^4.3",
|
|
"phpunit/phpunit": "^8.5.8|^9.3.3"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"dont-discover": [
|
|
"laravel/telescope"
|
|
]
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
},
|
|
"classmap": [
|
|
"database/seeds",
|
|
"database/factories"
|
|
],
|
|
"files": [
|
|
"app/helpers.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"post-autoload-dump": [
|
|
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
|
|
"@php artisan package:discover --ansi"
|
|
],
|
|
"post-root-package-install": [
|
|
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
|
|
],
|
|
"post-create-project-cmd": [
|
|
"@php artisan key:generate --ansi"
|
|
],
|
|
"check-style": "php-cs-fixer fix --dry-run --diff .",
|
|
"fix-style": "php-cs-fixer fix ."
|
|
}
|
|
}
|