forked from Anankke/SSPanel-UIM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 2.09 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
{
"require": {
"php": "^8.1",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-mysqli": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-redis": "*",
"ext-xml": "*",
"ext-zip": "*",
"anankke/omnipay-alipay": "^3.1.3",
"aws/aws-sdk-php": "^3",
"cloudflare/sdk": "^1",
"geoip2/geoip2": "~2.0",
"guzzlehttp/guzzle": "^7.4",
"guzzlehttp/psr7": "^2.4",
"illuminate/database": "^10.0",
"illuminate/pagination": "^10.0",
"irazasyed/telegram-bot-sdk": "^3",
"khanamiryan/qrcode-detector-decoder": "*",
"lcobucci/jwt": "^5.0",
"league/omnipay": "^3.2.1",
"mailgun/mailgun-php": "^3",
"nikolaposa/rate-limit": "^3.0",
"openai-php/client": "^0.6.1",
"ozdemir/datatables": "^2",
"phpmailer/phpmailer": "^6",
"postal/postal": "^2",
"ramsey/uuid": "^4",
"sendgrid/sendgrid": "^8",
"sentry/sdk": "^3.3",
"slim/http": "^1.3",
"slim/slim": "^4.11",
"smarty/smarty": "^4",
"srmklive/paypal": "~3.0",
"stripe/stripe-php": "^10",
"symfony/yaml": "^6",
"tronovav/geoip2-update": "^2.1",
"vectorface/googleauthenticator": "^3.0",
"voku/anti-xss": "^4"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"require-dev": {
"nunomaduro/phpinsights": "*",
"phpunit/phpunit": "^10.2"
},
"scripts": {
"update-dev-windows": [
"composer update --ignore-platform-req=ext-posix --ignore-platform-req=ext-redis"
],
"install-dev-windows": [
"composer instal --ignore-platform-req=ext-posix --ignore-platform-req=ext-redis"
]
}
}