-
Notifications
You must be signed in to change notification settings - Fork 3.4k
/
composer.json
75 lines (75 loc) · 2.22 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
{
"require": {
"php": "^8.2",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-redis": "*",
"ext-xml": "*",
"ext-yaml": "*",
"ext-zip": "*",
"alibabacloud/dm-20170622": "^1",
"alipaysdk/openapi": "*@dev",
"aws/aws-sdk-php": "^3",
"geoip2/geoip2": "^3",
"guzzlehttp/guzzle": "^7",
"guzzlehttp/psr7": "^2",
"illuminate/database": "^11",
"illuminate/pagination": "^11",
"irazasyed/telegram-bot-sdk": "^3",
"lcobucci/jwt": "^5",
"mailchimp/transactional": "^1",
"mailgun/mailgun-php": "^4",
"nikolaposa/rate-limit": "^3",
"openai-php/client": "^0",
"phpmailer/phpmailer": "^6",
"postal/postal": "^2",
"ramsey/uuid": "^4",
"sendgrid/sendgrid": "^8",
"sentry/sdk": "^4",
"slim/http": "^1",
"slim/slim": "^4",
"smarty/smarty": "^5",
"srmklive/paypal": "^3",
"stripe/stripe-php": "^14",
"symfony/http-client": "^7",
"symfony/translation": "^7",
"tronovav/geoip2-update": "^2",
"twig/twig": "^3",
"vectorface/googleauthenticator": "^3",
"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": {
"dg/bypass-finals": "^1",
"nunomaduro/phpinsights": "*",
"phpunit/phpunit": "^10"
},
"scripts": {
"update-dev-windows": [
"composer update --ignore-platform-req=ext-posix --ignore-platform-req=ext-redis --ignore-platform-req=ext-yaml"
],
"install-dev-windows": [
"composer install --ignore-platform-req=ext-posix --ignore-platform-req=ext-redis --ignore-platform-req=ext-yaml"
]
},
"type": "project"
}