-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
55 lines (55 loc) · 1.97 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
{
"name": "joomla/database",
"type": "joomla-package",
"description": "Joomla Database Package",
"keywords": ["joomla", "framework", "database"],
"homepage": "https://github.com/joomla-framework/database",
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.1.0",
"joomla/event": "^3.0",
"symfony/deprecation-contracts": "^2|^3"
},
"require-dev": {
"joomla/archive": "^3.0",
"joomla/console": "^3.0",
"joomla/di": "^3.0",
"joomla/filesystem": "^3.0",
"joomla/registry": "^3.0",
"joomla/test": "^3.0",
"phpunit/phpunit": "^9.5.28",
"psr/log": "^1.1",
"symfony/phpunit-bridge": "^5.0",
"squizlabs/php_codesniffer": "~3.7.2",
"phpstan/phpstan": "^1.10.7",
"phan/phan": "^5.4.2"
},
"suggest": {
"joomla/archive": "To use the ExportCommand class, install joomla/archive",
"joomla/console": "To use the ExportCommand and ImportCommand classes, install joomla/console",
"joomla/di": "To use the Database ServiceProviderInterface objects, install joomla/di.",
"joomla/filesystem": "To use the ExportCommand and ImportCommand classes, install joomla/filesystem",
"joomla/registry": "To use the Database ServiceProviderInterface objects, install joomla/registry.",
"psr/log": "To use the LoggingMonitor, install psr/log.",
"ext-mysqli": "To connect to a MySQL database via MySQLi",
"ext-pdo": "To connect to a MySQL, PostgreSQL, or SQLite database via PDO",
"ext-sqlsrv": "To connect to a SQL Server database"
},
"autoload": {
"psr-4": {
"Joomla\\Database\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Joomla\\Database\\Tests\\": "Tests/"
}
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-2.0-dev": "2.0-dev",
"dev-3.x-dev": "3.0-dev"
}
}
}