forked from monicahq/monica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
102 lines (102 loc) · 2.93 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
{
"name": "monicahq/monica",
"type": "project",
"description": "Monica is a personal relationship manager.",
"keywords": [
"laravel",
"crm",
"prm",
"social"
],
"license": "AGPL-3.0-or-later",
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"ext-intl": "*",
"asbiin/laravel-sentry-tunnel": "^2.0",
"asbiin/laravel-webauthn": "^4.4",
"codezero/laravel-localizer": "^3.0",
"doctrine/dbal": "^4.1",
"guzzlehttp/guzzle": "^7.4",
"http-interop/http-factory-guzzle": "^1.2",
"inertiajs/inertia-laravel": "^1.0",
"knuckleswtf/scribe": "^4.33",
"laravel-notification-channels/telegram": "^5.0",
"laravel/fortify": "^1.13",
"laravel/framework": "^11.0",
"laravel/jetstream": "^5.0",
"laravel/sanctum": "^4.0",
"laravel/scout": "^10.2",
"laravel/socialite": "^5.5",
"laravel/telescope": "^5.0",
"matriphe/iso-639": "^2.0",
"meilisearch/meilisearch-php": "^1.0",
"moneyphp/money": "^4.3",
"monicahq/laravel-sabre": "^1.6",
"rinvex/countries": "^9.0",
"sentry/sentry-laravel": "^4.3",
"socialiteproviders/facebook": "^4.1",
"socialiteproviders/github": "^4.1",
"socialiteproviders/google": "^4.1",
"socialiteproviders/linkedin": "^4.2",
"socialiteproviders/microsoft-azure": "^5.1",
"stevebauman/location": "^7.0",
"thecodingmachine/safe": "^2.5",
"tightenco/ziggy": "2.3.0",
"uploadcare/uploadcare-php": "^4.1"
},
"require-dev": {
"amirami/localizator": "^0.13.0-alpha",
"barryvdh/laravel-debugbar": "^3.7",
"barryvdh/laravel-ide-helper": "^3.0",
"brianium/paratest": "^7.0",
"fakerphp/faker": "^1.9",
"larastan/larastan": "2.9.8",
"laravel-lang/common": "^6.0",
"laravel/pint": "^1.1",
"laravel/sail": "^1.14",
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^8.1",
"phpunit/phpunit": "^10.0",
"roave/security-advisories": "dev-master",
"spatie/laravel-ignition": "^2.4",
"stichoza/google-translate-php": "^5.1",
"thecodingmachine/phpstan-safe-rule": "^1.2"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers/helpers.php"
]
},
"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
}