-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.7 KB
/
Copy pathcomposer.json
File metadata and controls
84 lines (84 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "blueprintframework/hydrodactyl",
"description": "Hydrodactyl is the Pterodactyl-based game server panel that's faster, smaller, safer, and more accessible.",
"license": "Apache-2.0",
"authors": [
{
"name": "Naterfute",
"email": "naterfute@blueprint.zip",
"homepage": "https://naterfute.dev",
"role": "Maintainer"
}
],
"require": {
"php": "^8.4 || ^8.5",
"ext-json": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ext-posix": "*",
"ext-zip": "*",
"aws/aws-sdk-php": "^3.385.0",
"guzzlehttp/guzzle": "^7.12.1",
"hashids/hashids": "~5.0.2",
"laracasts/utilities": "^3.2",
"laravel/framework": "^13.0",
"laravel/helpers": "^1.8",
"laravel/sanctum": "^4.3",
"laravel/tinker": "^3.0",
"laravel/ui": "^4.6",
"lcobucci/jwt": "~5.6.0",
"league/flysystem-aws-s3-v3": "~3.29.0",
"league/flysystem-memory": "~3.29.0",
"matriphe/iso-639": "~2.0",
"phpseclib/phpseclib": "~3.0.42",
"pragmarx/google2fa": "~8.0.3",
"predis/predis": "~2.2.2",
"prologue/alerts": "^1.4",
"psr/cache": "~3.0.0",
"s1lentium/iptools": "~1.2.0",
"spatie/laravel-fractal": "^6.2",
"spatie/laravel-query-builder": "^6.3",
"staudenmeir/belongs-to-through": "^2.17",
"symfony/http-client": "~7.1.5",
"symfony/mailgun-mailer": "~7.1.3",
"symfony/postmark-mailer": "~7.1.1",
"symfony/yaml": "~7.4.0",
"webmozart/assert": "~1.11.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.7",
"fakerphp/faker": "~1.23.1",
"friendsofphp/php-cs-fixer": "^3.64",
"itsgoingd/clockwork": "~5.2.2",
"larastan/larastan": "^3.8",
"laravel/boost": "^2.4",
"mockery/mockery": "~1.6.12",
"nunomaduro/collision": "^8.6",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.0",
"spatie/laravel-ignition": "^2.8"
},
"autoload": {
"files": ["app/helpers.php"],
"psr-4": {
"Pterodactyl\\": "app/",
"Hydrodactyl\\": "app/",
"Database\\Factories\\": "database/Factories/",
"Database\\Seeders\\": "database/Seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Pterodactyl\\Tests\\": "tests/",
"Hydrodactyl\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}