-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.91 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.91 KB
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
{
"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.3.0",
"joomla/event": "^4.0",
"symfony/deprecation-contracts": "^2|^3"
},
"require-dev": {
"joomla/archive": "^4.0",
"joomla/console": "^4.0",
"joomla/di": "^4.0",
"joomla/filesystem": "^4.0",
"joomla/registry": "^4.0",
"joomla/test": "^4.0",
"phpunit/phpunit": "^12.0",
"psr/log": "^3.0.2",
"colinodell/psr-testlogger": "^1.3.0",
"symfony/phpunit-bridge": "^8.0",
"squizlabs/php_codesniffer": "^3.10.2",
"phpstan/phpstan": "^2.1.17",
"phpstan/phpstan-deprecation-rules": "^2.0.3"
},
"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"
}