-
Notifications
You must be signed in to change notification settings - Fork 564
/
composer.json
137 lines (137 loc) · 4.16 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
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/RafficMohammed/laravel-push-notification.git"
},
{
"type": "vcs",
"url": "https://github.com/RafficMohammed/Datatable.git"
},
{
"type": "vcs",
"url": "https://github.com/RafficMohammed/Zipper.git"
},
{
"type": "vcs",
"url": "https://github.com/RafficMohammed/Laravel-FCM.git"
},
{
"type": "vcs",
"url": "https://github.com/RafficMohammed/laravel-ckeditor.git"
},
{
"type": "vcs",
"url": "https://github.com/sandesh556/laravel-gravatar.git"
},
{
"type": "vcs",
"url": "https://github.com/sandesh556/pdf-laravel5.git"
},
{
"type": "vcs",
"url": "https://github.com/ladybirdweb/clockwork.git"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^9.46",
"laravelcollective/html": "^6.3",
"vsmoraes/laravel-pdf": "dev-dev-laravel6",
"propaganistas/laravel-phone": "^4.3",
"bugsnag/bugsnag-laravel": "^2.23",
"neitanod/forceutf8": "dev-master",
"nicolaslopezj/searchable": "^1.13",
"tymon/jwt-auth": "dev-develop",
"davejamesmiller/laravel-breadcrumbs": "^5.3",
"aws/aws-sdk-php": "^3.131",
"predis/predis": "~1.0",
"mremi/url-shortener": "^2.4",
"maatwebsite/excel": "^3.1",
"laravel/socialite": "^5.3",
"tedivm/fetch": "0.6.*",
"unisharp/laravel-filemanager": "^2.4",
"torann/geoip": "^3.0",
"yajra/laravel-datatables-oracle": "^9.19",
"flowjs/flow-php-server": "^1.0",
"doctrine/dbal": "^2.13",
"laravel/tinker": "^2.7",
"laravel/ui": "^3.3",
"guzzlehttp/guzzle": "^7.2",
"league/flysystem-aws-s3-v3": "^3.0",
"davibennun/laravel-push-notification": "dev-master",
"chumper/datatable": "dev-master",
"chumper/zipper": "dev-master",
"brozot/laravel-fcm": "dev-master",
"unisharp/laravel-ckeditor": "dev-master",
"thomaswelton/laravel-gravatar": "dev-master",
"symfony/mailgun-mailer": "^6.2",
"symfony/http-client": "^6.2",
"itsgoingd/clockwork": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"phpspec/phpspec": "^7.2.0",
"symfony/dom-crawler": "^6.0",
"symfony/css-selector": "^6.0",
"laravel/dusk": "^6.21",
"nunomaduro/collision": "^6.3",
"mockery/mockery": "^1.4.4",
"fakerphp/faker": "^1.9.1",
"barryvdh/laravel-debugbar": "^3.8",
"spatie/laravel-ignition": "^1.4",
"laravel/pint": "^1.4",
"beyondcode/laravel-query-detector": "^1.7"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/",
"Tests\\": "tests/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"extra": {
"laravel": {
"dont-discover": [
"laravel/dusk"
]
}
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan clear-compiled",
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-create-project-cmd": [
"php -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
},
"config": {
"preferred-install": "dist"
}
}