-
Notifications
You must be signed in to change notification settings - Fork 121
/
composer.json
151 lines (151 loc) · 5.04 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/slavka041/mailchimp-api-v3"
},
{
"type": "vcs",
"url": "https://github.com/ladybirdweb/clockwork.git"
},
{
"type": "vcs",
"url": "https://github.com/sandesh556/laravel-email-database-log.git"
}
],
"require": {
"php": "^8.1",
"ext-pcntl": "*",
"anhskohbo/no-captcha": "^3.4",
"arcanedev/log-viewer": "^10.0",
"bacon/bacon-qr-code": "^2.0",
"barryvdh/laravel-dompdf": "^2.0",
"bugsnag/bugsnag-laravel": "^2.24",
"cartalyst/stripe-laravel": "^15.0",
"coconutcraig/laravel-postmark": "^3.0",
"creativeorange/gravatar": "~1.0",
"darryldecode/cart": "^4.2",
"devio/pipedrive": "^2.12",
"endroid/qr-code-bundle": "^4.1",
"ezyang/htmlpurifier": "^4.14",
"geoip2/geoip2": "^2.12",
"graham-campbell/markdown": "^15.0",
"guzzlehttp/guzzle": "^7.4",
"itsgoingd/clockwork": "dev-master",
"laravel/framework": "^10.0",
"laravel/horizon": "^5.9",
"laravel/socialite": "^5.6",
"laravel/tinker": "^2.7",
"laravel/ui": "^4.0",
"laravelcollective/html": "^6.3",
"league/commonmark": "^2.3",
"league/flysystem-aws-s3-v3": "^3.0",
"maatwebsite/excel": "^3.1",
"monolog/monolog": "^3.0",
"php-mock/php-mock": "^2.3",
"pion/laravel-chunk-upload": "^1.5",
"pragmarx/google2fa-laravel": "^2.0",
"pragmarx/google2fa-qrcode": "^3.0",
"predis/predis": "^2.0",
"rachidlaasri/laravel-installer": "~4.1.0",
"razorpay/razorpay": "^2.8",
"shvetsgroup/laravel-email-database-log": "dev-master",
"simplesoftwareio/simple-qrcode": "^4.2",
"slavka/mailchimp-apiv3": "dev-master#d4c99f784559ae791eece8341faafdd79d41a353",
"spatie/laravel-activitylog": "^4.5",
"spatie/laravel-referer": "^1.8",
"stripe/stripe-php": "^10.15",
"swiftmailer/swiftmailer": "^6.0",
"symfony/google-mailer": "^6.1",
"symfony/http-client": "^6.1",
"symfony/mailer": "^6.1",
"symfony/mailgun-mailer": "^6.1",
"symfony/mime": "^6.1",
"symfony/polyfill-iconv": "^1.26",
"symfony/templating": "^6.1",
"symfony/twig-bundle": "^6.1",
"torann/currency": "^1.1",
"torann/geoip": "^3.0",
"twig/cssinliner-extra": "^3.4",
"twig/extra-bundle": "^3.4",
"twig/twig": "^3.4",
"vemcogroup/laravel-sparkpost-driver": "v5.0.5",
"yajra/laravel-datatables": "^10.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.8",
"barryvdh/laravel-ide-helper": "^2.12",
"beyondcode/laravel-query-detector": "^1.7",
"fakerphp/faker": "^1.20.0",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^6.1",
"phpunit/php-code-coverage": "^9.2",
"phpunit/phpunit": "^9.5.10",
"spatie/laravel-ignition": "^2.0",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"exclude-from-classmap": [
"/vendor/monolog/*"
],
"files": [
"app/Http/helpers.php"
],
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
"barryvdh/laravel-ide-helper"
]
}
},
"scripts": {
"filter-test": "php vendor/phpunit/phpunit/phpunit --colors=always --filter",
"all-test": "php vendor/phpunit/phpunit/phpunit",
"all-unit-test": "php vendor/phpunit/phpunit/phpunit --testsuite Unit",
"backend-test": "php vendor/phpunit/phpunit/phpunit --colors=always --testsuite backend",
"group-test": "php vendor/phpunit/phpunit/phpunit --colors=always --group",
"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 vendor:publish --tag=laravel-assets --ansi --force"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"endroid/installer": true
}
}
}