-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
140 lines (140 loc) · 4.51 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"repositories": [
{
"type": "path",
"url": "./packages/pcinaglia/laraupdater",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./packages/rachidlaasri/laravel-installer",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^8.1",
"ext-zip": "*",
"akaunting/laravel-setting": "^1.2",
"aws/aws-sdk-php": "^3.275",
"bacon/bacon-qr-code": "^3.0",
"barryvdh/laravel-dompdf": "^2.0",
"brick/math": "^0.11.0",
"coingate/coingate-php": "^4.1",
"copyleaks/php-plagiarism-checker": "^4.0",
"cryptomus/api-php-sdk": "^1.0",
"darkaonline/l5-swagger": "^8.5",
"datlechin/laravel-google-translate": "^0.0.2",
"doctrine/dbal": "^3.6",
"elseyyid/laravel-json-mysql-locations-manager": "^1.0",
"enshrined/svg-sanitize": "^0.16.0",
"firebase/php-jwt": "^6.10",
"gehrisandro/tailwind-merge-laravel": "^1.1",
"google/cloud-text-to-speech": "^1.6",
"guzzlehttp/guzzle": "^7.6",
"igaster/laravel-theme": "^2.0",
"illuminate/support": "*",
"intervention/image": "^3.5",
"iyzico/iyzipay-php": "^2.0",
"laravel/cashier": "^14.8",
"laravel/framework": "^10.0",
"laravel/passport": "^11.9",
"laravel/sanctum": "^3.2",
"laravel/socialite": "^5.6",
"laravel/tinker": "^2.8",
"league/flysystem-aws-s3-v3": "3.0",
"mcamara/laravel-localization": "^1.8",
"mews/purifier": "^3.4",
"nerdzlab/socialite-apple-sign-in": "^2.2",
"noweh/twitter-api-v2-php": "^3.4",
"openai-php/client": "^0.6.4",
"openai-php/laravel": "^0.6.3",
"orhanerday/open-ai": "^5.1",
"paddlehq/paddle-php-sdk": "^1.0",
"paquettg/php-html-parser": "^2.2",
"pcinaglia/laraupdater": "@dev",
"php-ffmpeg/php-ffmpeg": "^1.2",
"php-http/guzzle7-adapter": "^1.0",
"phpoffice/phpspreadsheet": "^2.1",
"phpoffice/phpword": "^1.1",
"pragmarx/google2fa-laravel": "^2.2",
"protobuf-php/protobuf": "^0.1.3",
"rachidlaasri/laravel-installer": "@dev",
"razorpay/razorpay": "^2.9",
"ryangjchandler/blade-tabler-icons": "^2.2",
"smalot/pdfparser": "^2.7",
"spatie/laravel-health": "^1.22",
"spatie/laravel-sitemap": "^7.2",
"spatie/pdf-to-text": "^1.52",
"srmklive/paypal": "~3.0",
"symfony/process": "^6.2",
"yajra/laravel-datatables-oracle": "^10.8",
"yoomoney/yookassa-sdk-php": "^3.1"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.9",
"fakerphp/faker": "^1.9.1",
"laravel/breeze": "^1.19",
"laravel/pint": "^1.0",
"laravel/sail": "^1.18",
"mockery/mockery": "^1.4.4",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers/helpers.php",
"app/Services/AdsenseService.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}