-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·121 lines (121 loc) · 3.72 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^7.4.9",
"64robots/nova-fields": "^0.21.0",
"akki-io/laravel-nova-search": "^1.0",
"aws/aws-sdk-php": "^3.36",
"aws/aws-sdk-php-laravel": "^3.2",
"bissolli/nova-phone-field": "^0.0.2",
"cartalyst/stripe-laravel": "^12.0",
"coconutcraig/laravel-postmark": "^2.9",
"coderello/laravel-passport-social-grant": "^3.0",
"coroowicaksono/chart-js-integration": "^0.3.4",
"dniccum/phone-number": "^1.0",
"doctrine/dbal": "^2.6",
"emilianotisato/nova-google-autocomplete-field": "^0.7.2",
"fico7489/laravel-pivot": "^3.0",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^2.0",
"genealabs/nova-map-marker-field": "^0.2.0",
"gobrightspot/nova-detached-actions": "^1.1",
"grimzy/laravel-mysql-spatial": "^2.0",
"guzzlehttp/guzzle": "^6.5",
"inspheric/nova-indicator-field": "^1.43",
"intervention/image": "^2.5",
"johngrogg/ics-parser": "^2.2",
"kreait/firebase-php": "^4.32",
"kylekatarnls/laravel-carbon-2": "^1.0.0",
"laravel-notification-channels/twilio": "^3.1",
"laravel/framework": "^7.0",
"laravel/nova": "~3.0",
"laravel/passport": "^9.2",
"laravel/slack-notification-channel": "^2.2",
"laravel/socialite": "^5.1",
"laravel/tinker": "^2.0",
"league/flysystem-aws-s3-v3": "^1.0",
"maatwebsite/excel": "^3.1",
"maatwebsite/laravel-nova-excel": "^1.2",
"mpdf/mpdf": "^8.0",
"nesbot/carbon": "^2.35.0",
"pusher/pusher-php-server": "~4.0",
"roelofr/laravel-encryption-cast": "^1.0",
"sentry/sentry-laravel": "1.8.0",
"spatie/calendar-links": "^1.6",
"spatie/laravel-analytics": "^3.10",
"spatie/laravel-permission": "^3.17",
"spatie/laravel-query-builder": "^3.0",
"spatie/laravel-sluggable": "^2.5",
"symfony/translation": "^5.0",
"thomasjohnkane/snooze": "^1.0",
"titasgailius/search-relations": "^2.0",
"zgabievi/promocodes": "^2.3",
"ext-json": "*"
},
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"require-dev": {
"filp/whoops": "~2.0",
"fzaninotto/faker": "~1.4",
"laravel/telescope": "^3.5",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
},
"files": [
"app/Http/RedisUpload.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postInstall"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan nova:publish"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.4.9"
}
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/telescope"
]
}
}
}