-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
59 lines (59 loc) · 1.39 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
{
"name": "chillerlan/php-database",
"description": "An extensible database wrapper and query builder.",
"homepage": "https://github.com/chillerlan/php-database",
"license": "MIT",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"database", "query", "builder", "querybuilder", "driver", "mysql",
"postgres", "mariadb", "firebird", "sqlite", "mssql"
],
"authors": [
{
"name": "Smiley",
"email": "smiley@chillerlan.net",
"homepage": "https://github.com/codemasher"
}
],
"support": {
"issues": "https://github.com/chillerlan/php-database/issues",
"source": "https://github.com/chillerlan/php-database"
},
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-mbstring": "*",
"ext-sodium": "*",
"chillerlan/php-settings-container": "^3.2.1",
"psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"chillerlan/php-dotenv": "^3.0",
"chillerlan/php-cache": "^5.1",
"monolog/monolog": "^3.7",
"phan/phan": "^5.4.5",
"phpunit/phpunit": "^11.3"
},
"autoload": {
"psr-4": {
"chillerlan\\Database\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"chillerlan\\DatabaseTest\\": "tests"
}
},
"scripts": {
"phpunit": "@php vendor/phpunit/phpunit/phpunit",
"phan": "@php vendor/phan/phan/phan"
},
"config": {
"lock": false,
"sort-packages": true,
"platform-check": true
}
}