1
0
mirror of https://github.com/dg/dibi.git synced 2025-02-22 18:02:25 +01:00
php-dibi/composer.json

38 lines
787 B
JSON
Raw Normal View History

2012-03-27 17:42:15 +02:00
{
2013-04-03 14:30:29 +02:00
"name": "dibi/dibi",
2014-06-02 15:23:52 +02:00
"description": "Dibi is Database Abstraction Library for PHP",
2015-11-04 14:23:14 +01:00
"keywords": ["database", "dbal", "mysql", "postgresql", "sqlite", "mssql", "sqlsrv", "oracle", "access", "pdo", "odbc"],
2015-12-14 14:25:29 +01:00
"homepage": "https://dibiphp.com",
2020-01-07 11:53:19 +01:00
"license": ["BSD-3-Clause", "GPL-2.0-only", "GPL-3.0-only"],
2012-03-27 17:42:15 +02:00
"authors": [
{
"name": "David Grudl",
2015-10-05 16:14:16 +02:00
"homepage": "https://davidgrudl.com"
2012-03-27 17:42:15 +02:00
}
],
"require": {
2022-09-06 04:30:49 +02:00
"php": "8.0 - 8.3"
},
2012-10-18 22:09:48 +02:00
"require-dev": {
2021-03-01 16:01:23 +01:00
"tracy/tracy": "^2.9",
"nette/tester": "^2.5",
"nette/di": "^3.1",
"phpstan/phpstan": "^1.0"
2012-10-18 22:09:48 +02:00
},
"replace": {
"dg/dibi": "*"
},
2012-03-27 17:42:15 +02:00
"autoload": {
2018-03-09 15:22:39 +01:00
"classmap": ["src/"]
},
2019-12-10 17:08:07 +01:00
"scripts": {
2020-10-29 01:37:39 +01:00
"phpstan": "phpstan analyse",
2019-12-10 17:08:07 +01:00
"tester": "tester tests -s"
},
"extra": {
"branch-alias": {
2021-03-01 15:26:05 +01:00
"dev-master": "5.0-dev"
}
2012-03-27 17:42:15 +02:00
}
2013-06-23 01:57:48 +02:00
}