-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
110 lines (110 loc) · 3.11 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
109
110
{
"name": "knik/gameap",
"description": "Game Admin Panel",
"keywords": ["games", "panel"],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Nikita Kuznetsov",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.3|^8.0",
"ext-bz2": "*",
"ext-curl": "*",
"ext-gmp": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-xml": "*",
"ext-zip": "*",
"doctrine/dbal": "~2.3",
"fakerphp/faker": "^1.20.0",
"fideloper/proxy": "~4.0",
"gameap/gameap-file-manager": "^1.0",
"guzzlehttp/guzzle": "^7.5.0",
"joshbrw/laravel-module-installer": "^1.0.1",
"knik/flysystem-gameap": "*",
"knik/g-rcon": "*",
"knik/gameap-daemon-client": "^0.6",
"knik/gameq": "^3.0",
"knik/x509": "^0.6.2",
"laravel/framework": "^8.83.0",
"laravel/helpers": "^1.6",
"laravel/legacy-factories": "^1.3",
"laravel/sanctum": "^2.15",
"laravel/tinker": "^2.8",
"laravel/ui": "^3.4",
"laravelcollective/html": "^6",
"league/flysystem": "^1.1.10",
"mavinoo/laravel-batch": "^2.3.5",
"moontoast/math": "^1.1",
"nwidart/laravel-modules": "^8.0",
"phpseclib/phpseclib": "^3.0.18",
"silber/bouncer": "v1.0.0",
"spatie/laravel-query-builder": "^3.6.0",
"spatie/laravel-json-api-paginate": "^1.13.0",
"splitbrain/php-archive": "^1.3",
"symfony/property-access": "^5.4",
"symfony/serializer": "^5"
},
"require-dev": {
"barryvdh/laravel-debugbar": "3.*",
"barryvdh/laravel-ide-helper": "^2.6",
"filp/whoops": "~2.0",
"laravel/dusk": "^6",
"mockery/mockery": "1.3.*",
"phpunit/phpunit": "^9.6.19",
"symplify/easy-coding-standard": "^9.0"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"Gameap\\": "app/",
"App\\": "app/",
"GameapModules\\": "modules/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeds/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
},
"module-dir": "modules"
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"check": [
"vendor/bin/ecs check app"
],
"fix": [
"vendor/bin/ecs check app --fix"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"joshbrw/laravel-module-installer": true
}
}
}