1
0
mirror of https://github.com/dg/dibi.git synced 2025-02-23 10:26:21 +01:00
php-dibi/composer.json

38 lines
784 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": {
2017-03-08 13:57:45 +01:00
"php": ">=7.1"
},
2012-10-18 22:09:48 +02:00
"require-dev": {
"tracy/tracy": "~2.2",
2019-12-10 17:08:07 +01:00
"nette/tester": "~2.0",
2020-05-07 21:30:57 +02:00
"nette/di": "^3.0",
2019-12-10 17:08:07 +01:00
"phpstan/phpstan": "^0.12"
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": {
2020-10-08 17:14:40 +02:00
"dev-master": "4.2-dev"
}
2012-03-27 17:42:15 +02:00
}
2013-06-23 01:57:48 +02:00
}