-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 3.05 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
{
"name": "arrayaccess/traydigita",
"description": "Tray Digita System",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "ArrayIterator",
"email": "[email protected]",
"role": "developer"
}
],
"require": {
"php": "^8.2|^8.3",
"ext-curl": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-openssl": "*",
"ext-pdo_mysql": "*",
"ext-fileinfo": "*",
"doctrine/data-fixtures": "^1.7",
"doctrine/orm": "~3",
"doctrine/sql-formatter": "^1.4",
"dragonmantank/cron-expression": "^3.3",
"endroid/qr-code": "^5.0",
"league/iso3166": "^4.3",
"monolog/monolog": "^3.7.0",
"nelexa/zip": "^4.0.2",
"nikic/php-parser": "~4",
"predis/predis": "~2",
"psr/http-message": "~2",
"psr/http-factory": "~1",
"psr/http-server-middleware": "~1",
"psr/cache": "~3",
"psr/container": "^2",
"psr/log": "^3.0",
"psr/http-client": "^1",
"psr/simple-cache": "^3",
"symfony/cache": "^7",
"symfony/console": "^7",
"symfony/filesystem": "^7",
"symfony/finder": "^7",
"symfony/polyfill-mbstring": "^1",
"symfony/polyfill-intl-idn": "^1",
"symfony/yaml": "^7",
"symfony/http-client": "^7",
"symfony/mailer": "^7",
"twig/twig": "^v3.10.3",
"whichbrowser/parser": "^v2.1.8"
},
"suggest": {
"ext-memcached": "To make application support memcached cache",
"ext-redis": "To make application support redis cache",
"ext-couchbase_v2": "To make application support couchbase v2 cache",
"ext-mbstring": "Need to support Multibyte String",
"ext-imagick": "For more advance image generation & editing",
"ext-gd": "To support image generation & manipulation",
"ext-sodium": "Provides strong encryption capabilities in an easy and consistent way",
"league/oauth2-server": "Compliant implementation of an OAuth 2.0 authorization server written in PHP which makes working with OAuth 2.0 trivial",
"doctrine/migrations": "Allows you to easily update your production databases through a nice programmatic interface",
"arrayaccess/dns-client" : "Allows you to resolve dns client faster & timedout support based on object oriented"
},
"conflict": {
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.10.2",
"slevomat/coding-standard": "^8.15.0"
},
"scripts": {
"post-create-project-cmd": [
"ArrayAccess\\TrayDigita\\ComposerCreateProject::composerDoCreateProject"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"bin": ["bin/tray-digita"],
"autoload": {
"psr-4": {
"ArrayAccess\\TrayDigita\\": "src/",
"ArrayAccess\\TrayDigita\\App\\Modules\\": "app/Modules"
}
}
}