forked from 418sec/monica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
132 lines (132 loc) · 4.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "djaiss/monica",
"description": "Monica is a personal CRM.",
"license": "AGPL",
"keywords": ["prm", "crm", "social"],
"type": "project",
"require": {
"php": "^7.2.5",
"ext-bcmath": "*",
"ext-gd": "*",
"ext-gmp": "*",
"ext-imagick": "*",
"ext-intl": "*",
"ext-redis": "*",
"asbiin/laravel-webauthn": "^0.9",
"bacon/bacon-qr-code": "^2.0",
"creativeorange/gravatar": "~1.0",
"doctrine/dbal": "2.9.3",
"erusev/parsedown": "^1.7",
"facade/ignition": "^2.0",
"fideloper/proxy": "^4.0",
"giggsey/libphonenumber-for-php": "^8.9",
"guzzlehttp/guzzle": "^6.2",
"intervention/image": "^2.3",
"laravel/cashier": "~10.0",
"laravel/framework": "^7.0",
"laravel/passport": "^9.0",
"laravel/socialite": "^5.0",
"laravel/tinker": "^2.0",
"laravel/ui": "^2.0",
"laravolt/avatar": "^3.0",
"league/flysystem-aws-s3-v3": "~1.0",
"league/flysystem-cached-adapter": "^1.0",
"mariuzzo/laravel-js-localization": "^1.6",
"matriphe/iso-639": "^1.0",
"moneyphp/money": "^3.1",
"monicahq/laravel-cloudflare": "^1.0",
"monicahq/laravel-sabre": "^1.2",
"ok/ipstack-client": "^1.2",
"pragmarx/countries-laravel": "^0.6.1",
"pragmarx/google2fa": "^8.0",
"pragmarx/google2fa-laravel": "^1.3",
"pragmarx/recovery": "^0.1.0",
"predis/predis": "^1.1",
"ralouphie/mimey": "^2.0",
"sabre/dav": "^4.0",
"sentry/sentry-laravel": "^1.0",
"stevebauman/location": "^5.0",
"symfony/translation": "^5.0",
"thecodingmachine/safe": "^1.0",
"vectorface/whip": "^0.4.0",
"vinkla/hashids": "^8.1",
"vluzrmos/language-detector": "^2.1",
"web-token/jwt-key-mgmt": "^2.1",
"web-token/jwt-signature-algorithm-ecdsa": "^2.1",
"web-token/jwt-signature-algorithm-eddsa": "^2.1",
"web-token/jwt-signature-algorithm-rsa": "^2.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3",
"fzaninotto/faker": "^1.6",
"khanamiryan/qrcode-detector-decoder": "1.0.3",
"laravel/dusk": "^6.0",
"matthiasnoback/live-code-coverage": "^1.0",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^5.0",
"nunomaduro/larastan": "^0.6",
"phpunit/phpcov": "^7.0",
"phpunit/phpunit": "^9.0",
"psalm/plugin-laravel": "1.1.1",
"roave/security-advisories": "dev-master",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"vimeo/psalm": "3.11.2"
},
"suggest": {
"ext-apcu": "*"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"psr-4": {
"App\\": "app/",
"Tests\\": "tests/"
},
"files": [
"app/Helpers/helpers.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"laravel": {
"dont-discover": [
]
}
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate"
],
"pre-install-cmd": [
"App\\Helpers\\ComposerScripts::preInstall"
],
"pre-update-cmd": [
"App\\Helpers\\ComposerScripts::preUpdate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall"
]
},
"config": {
"apcu-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}