-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
108 lines (108 loc) · 3.09 KB
/
composer.json
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "zeropingheroes/lanager",
"description": "A LAN party management web application",
"authors": [
{
"name": "Olly Baker",
"email": "[email protected]",
"role": "Developer"
}
],
"keywords": [
"lanager",
"lan",
"party"
],
"license": "AGPL-3.0-only",
"config": {
"platform": {
"php": "8.3.1",
"ext-bcmath": "8.3.8",
"ext-curl": "8.3.8",
"ext-dom": "8.3.8",
"ext-fileinfo": "8.3.8",
"ext-json": "8.3.8",
"ext-libxml": "8.3.8",
"ext-mbstring": "8.3.8",
"ext-openssl": "8.3.8",
"ext-pdo": "8.3.8",
"ext-xml": "8.3.8",
"ext-simplexml": "8.3.8",
"ext-xmlwriter": "8.3.8",
"ext-tokenizer": "8.3.8",
"ext-zip": "8.3.8"
},
"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
},
"require": {
"php": "^8.3",
"bandwidth-throttle/token-bucket": "dev-patch-1",
"diglactic/laravel-breadcrumbs": "^9.0",
"graham-campbell/markdown": "^15.2",
"guzzlehttp/guzzle": "^7",
"laravel/framework": "^11.0",
"laravel/sanctum": "^4.0",
"laravel/socialite": "^5",
"league/csv": "^9.9",
"socialiteproviders/steam": "^4.2",
"syntax/steam-api": "^3.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.13",
"barryvdh/laravel-ide-helper": "^3.0",
"fakerphp/faker": "^1.23",
"laravel/dusk": "^8.2",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.1",
"ottaviano/faker-gravatar": "^0.2.0",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0",
"squizlabs/php_codesniffer": "^3.10"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/uezjk/token-bucket"
}
],
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"Zeropingheroes\\Lanager\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"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"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
}
}