-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
87 lines (87 loc) · 2.77 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
{
"name": "monicahq/customers",
"type": "project",
"description": "Customer portal.",
"keywords": [
"laravel",
"monica",
"officelife",
"portal"
],
"license": "AGPL-3.0-or-later",
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"asbiin/laravel-webauthn": "^4.0",
"codezero/laravel-localizer": "^2.0",
"doctrine/dbal": "^3.6",
"guzzlehttp/guzzle": "^7.4",
"http-interop/http-factory-guzzle": "^1.2",
"inertiajs/inertia-laravel": "^0",
"laravel/cashier-paddle": "^1.5",
"laravel/fortify": "^1.12",
"laravel/framework": "^10.0",
"laravel/jetstream": "^4.0",
"laravel/passport": "^11.0",
"laravel/sanctum": "^3.2",
"laravel/socialite": "^5.5",
"monarobase/country-list": "^3.3",
"naugrim/laravel-sentry-tunnel": "^1.0",
"sentry/sentry-laravel": "^3.0",
"socialiteproviders/facebook": "^4.1",
"socialiteproviders/github": "^4.1",
"socialiteproviders/google": "^4.1",
"socialiteproviders/laravelpassport": "^4.1",
"socialiteproviders/linkedin": "^4.2",
"socialiteproviders/microsoft-azure": "^5.1",
"thecodingmachine/safe": "^2.5",
"tightenco/ziggy": "^1.0",
"vluzrmos/language-detector": "^2.3"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.6",
"fakerphp/faker": "^1.9",
"laravel/sail": "^1.0",
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^7.0",
"nunomaduro/larastan": "^2.0",
"phpunit/phpunit": "^10.0",
"psalm/plugin-laravel": "^2.0",
"roave/security-advisories": "dev-master",
"spatie/laravel-ignition": "^2.0",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"autoload": {
"psr-4": {
"App\\": "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": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}