mirror of
https://github.com/Icinga/icinga-php-library.git
synced 2025-08-28 04:58:13 +02:00
30 lines
558 B
JSON
30 lines
558 B
JSON
{
|
|
"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"
|
|
},
|
|
"require-dev": {
|
|
"ipl/stdlib": "dev-main"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"ipl\\Sql\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ipl\\Tests\\Sql\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "vendor/bin/phpunit"
|
|
}
|
|
}
|