-
Notifications
You must be signed in to change notification settings - Fork 58
/
composer.json
174 lines (174 loc) · 5.03 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "vatsimuk/core",
"description": "VATSIM UK Core Framework",
"keywords": [
"vatsim",
"vatsimuk",
"vatsim-uk",
"vatsim uk",
"planes",
"aviation"
],
"license": "MIT",
"type": "project",
"authors": [
{
"name": "Anthony Lawrence",
"email": "[email protected]",
"homepage": "https://www.github.com/A-Lawrence"
},
{
"name": "Neil Farrington",
"homepage": "https://www.github.com/N-Farrington"
},
{
"name": "Joe Clifford"
},
{
"name": "George Jones"
},
{
"name": "Calum Towers",
"email": "[email protected]",
"homepage": "https://www.github.com/CalumTowers"
},
{
"name": "Andy Ford"
},
{
"name": "Alex Toff"
},
{
"name": "Craig Milne"
},
{
"name": "Callum Axon"
},
{
"name": "Nathan Davies"
}
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/VATSIM-UK/laravel-ipboard"
},
{
"type": "vcs",
"url": "https://github.com/VATSIM-UK/public-id"
}
],
"require": {
"php": "^8.1.0",
"alawrence/laravel-ipboard": "dev-main",
"axonc/filament-copyable-placeholder": "^0.3.0",
"barryvdh/laravel-debugbar": "^3.3",
"barryvdh/laravel-ide-helper": "^3.0",
"bugsnag/bugsnag-laravel": "^2.0",
"doctrine/dbal": "~3.3",
"filament/filament": "^3.2",
"filament/notifications": "^3.2",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^10.0",
"laravel/helpers": "^1.1",
"laravel/horizon": "^5.0",
"laravel/passport": "^12.0",
"laravel/telescope": "^5.0",
"laravel/tinker": "^2.0",
"laravel/ui": "^4.0",
"laravelcollective/html": "^6.0",
"league/csv": "^9.0",
"league/oauth2-client": "^2.4",
"livewire/livewire": "^3.3",
"maatwebsite/excel": "~3.1.17",
"malahierba-lab/public-id": "dev-main",
"ohdearapp/ohdear-php-sdk": "^3.0",
"planetteamspeak/ts3-php-framework": "dev-master#9e987b61b8e559b4219d30b140b8edbeb94edece",
"predis/predis": "^2.0",
"pusher/pusher-php-server": "~7.2",
"sentry/sentry-laravel": "^4.0",
"spatie/laravel-permission": "^6.9",
"spatie/laravel-schedule-monitor": "^3.0",
"symfony/http-client": "^7.0",
"symfony/mailgun-mailer": "^7.0",
"symfony/translation": "^6.1",
"vatsim/sso": "3.0",
"watson/rememberable": "^6.0",
"whitecube/laravel-cookie-consent": "^1.0.1",
"wohali/oauth2-discord-new": "^1.0"
},
"require-dev": {
"ext-json": "*",
"codedungeon/phpunit-result-printer": "^0.32.0",
"fakerphp/faker": "^1.9.1",
"filament/upgrade": "^3.0-stable",
"laracasts/generators": "^2.0",
"laravel/homestead": "^15.0.1",
"laravel/legacy-factories": "^1.1",
"laravel/pint": "^1.10",
"mockery/mockery": "1.6.*",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0",
"spatie/laravel-ray": "^1.23",
"symfony/css-selector": "^4.0",
"symfony/dom-crawler": "^7.0",
"timacdonald/log-fake": "^2.0"
},
"autoload": {
"files": [
"app/helpers.php",
"app/CloudflareHelper.php"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
"laravelcollective/html"
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"post-update-cmd": [
"@php artisan horizon:publish",
"@php artisan telescope:publish",
"@php artisan filament:upgrade"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover",
"@php artisan filament:upgrade"
],
"ide-helper": [
"php artisan ide-helper:generate",
"php artisan ide-helper:models -RW",
"php artisan ide-helper:meta"
],
"lint": [
"./vendor/bin/pint"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}