blob: 5c4aad13eeafe49b0934faeb0dde91d692f3e565 (
plain)
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
|
{
"name": "ipl/sql",
"type": "library",
"description": "Icinga PHP Library - SQL abstraction layer",
"keywords": ["sql", "database"],
"homepage": "https://github.com/Icinga/ipl-sql",
"license": "MIT",
"require": {
"php": ">=7.2",
"ext-pdo": "*",
"ipl/stdlib": ">=0.12.0"
},
"autoload": {
"psr-4": {
"ipl\\Sql\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ipl\\Tests\\Sql\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}
|