-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
63 lines (63 loc) · 1.4 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
60
61
62
63
{
"name": "ublaboo/datagrid-nette-database-data-source",
"type": "library",
"description": "Utility that makes possible to use Nette\\Database native query with Ublaboo\\DataGrid",
"keywords": [
"datagrid",
"grid",
"nette",
"ublaboo",
"database",
"data",
"source"
],
"homepage": "https://ublaboo.org/datagrid-nette-database-data-source",
"license": [
"MIT"
],
"support": {
"issues": "https://github.com/ublaboo/datagrid-nette-database-data-source/issues"
},
"authors": [
{
"name": "Pavel Janda",
"homepage": "http://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Ublaboo\\NetteDatabaseDataSource\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ublaboo\\NetteDatabaseDataSource\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.2",
"nette/database": "^3.0",
"ublaboo/datagrid": "^6.0",
"greenlion/php-sql-parser": "^4.4"
},
"require-dev": {
"nette/tester": "^2.4.0",
"tracy/tracy": "^2.8.0",
"mockery/mockery": "^1.3.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"ninjify/coding-standard": "^0.11"
},
"prefer-stable": true,
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}