-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 1.26 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
{
"name": "kitsunetech/velox",
"description": "Velox Framework",
"type": "library",
"keywords": ["database","AJAX","JSON"],
"support": {
"email": "admin@kitsunetech.com"
},
"require": {
"php": ">=8.0.2"
},
"suggest": {
"ext-mbstring": "Needed for string comparison with multibyte encoding",
"ext-pdo_mysql": "Needed for MySQL/MariaDB support through PDO",
"ext-pdo_sqlsrv": "Microsoft SQL Server support through PDO",
"ext-pdo_odbc": "Needed for ODBC support through PDO",
"ext-sqlsrv": "Microsoft SQL Server support through native driver",
"ext-mysqli": "MySQL/MariaDB support through mysqli",
"ext-odbc": "Needed for standalone ODBC support",
"ext-xmlwriter": "Needed for XML data export",
"ext-pcntl": "Needed for webhook implementation",
"ext-posix": "Needed for webhook implementation"
},
"autoload": {
"psr-4": {
"KitsuneTech\\Velox\\": "src/"
},
"files": [
"src/Database/oneShot.php",
"src/Support/Constants.php",
"src/Support/ErrorHandling.php",
"src/Support/Utility.php",
"src/Transport/Export.php",
"config/config.php"
]
}
}