v2board/composer.json

81 lines
2.0 KiB
JSON
Raw Normal View History

2019-10-29 15:33:36 +08:00
{
2019-11-05 00:24:52 +08:00
"name": "v2board/v2board",
2019-10-29 15:33:36 +08:00
"type": "project",
2021-08-01 22:56:11 +08:00
"description": "v2board is a proxy protocol manage.",
2019-10-29 15:33:36 +08:00
"keywords": [
2019-11-05 00:24:52 +08:00
"v2board",
"v2ray",
2021-08-01 22:56:11 +08:00
"shadowsocks",
"trojan",
2019-10-29 15:33:36 +08:00
"laravel"
],
"license": "MIT",
"require": {
2022-04-26 01:06:36 +08:00
"php": "^7.3.0|^8.0",
2021-08-01 22:56:11 +08:00
"fideloper/proxy": "^4.4",
2022-12-13 12:29:23 +08:00
"firebase/php-jwt": "^6.3",
2021-08-01 22:56:11 +08:00
"fruitcake/laravel-cors": "^2.0",
2021-09-05 17:05:25 +08:00
"google/recaptcha": "^1.2",
2022-05-29 22:20:17 +08:00
"guzzlehttp/guzzle": "^7.4.3",
2022-04-26 01:06:36 +08:00
"laravel/framework": "^8.0",
"laravel/horizon": "^5.9.6",
2021-09-05 17:05:25 +08:00
"laravel/tinker": "^2.5",
"linfo/linfo": "^4.0",
2020-01-12 19:48:13 +08:00
"php-curl-class/php-curl-class": "^8.6",
2020-06-04 18:00:33 +08:00
"stripe/stripe-php": "^7.36.1",
2019-10-29 15:33:36 +08:00
"symfony/yaml": "^4.3"
},
"require-dev": {
2022-04-26 01:06:36 +08:00
"facade/ignition": "^2.3.6",
2021-08-01 22:56:11 +08:00
"fakerphp/faker": "^1.9.1",
"mockery/mockery": "^1.3.1",
"nunomaduro/collision": "^4.3",
2022-04-26 01:06:36 +08:00
"phpunit/phpunit": "^9.0"
2019-10-29 15:33:36 +08:00
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
2019-12-27 01:28:11 +08:00
"App\\": "app/",
"Library\\": "library/"
2019-10-29 15:33:36 +08:00
},
"classmap": [
"database/seeds",
"database/factories"
]
},
"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"
]
2021-10-05 21:03:27 +08:00
},
"repositories": {
"packagist": {
"type": "composer",
"url": "https://packagist.org"
}
2019-10-29 15:33:36 +08:00
}
}