forked from joomla-framework/database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.14 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
{
"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": "^5.3.10|~7.0",
"psr/log": "~1.0"
},
"require-dev": {
"joomla/coding-standards": "~2.0@alpha",
"joomla/test": "~1.0",
"phpunit/phpunit": "^4.8.35|^5.4.3",
"phpunit/dbunit": "~1.3|~2.0"
},
"suggest": {
"ext-mysqli": "To connect to a MySQL database via MySQLi",
"ext-pdo": "To connect to a MySQL, Oracle, PostgreSQL, or SQLite database via PDO",
"ext-pgsql": "To connect to a PostgreSQL database",
"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-master": "1.x-dev"
}
}
}