-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
53 lines (52 loc) · 1.13 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
{
"name": "uestla/twigrid",
"type": "library",
"description": "Experimental DataGrid for Nette Framework",
"keywords": ["nette", "addon", "datagrid"],
"homepage": "https://github.com/uestla/TwiGrid",
"license": "MIT",
"authors": [
{
"name": "Petr Kessler",
"homepage": "https://kesspess.cz",
"role": "Developer"
}
],
"require" : {
"php": ">= 7.1.0",
"nette/http": "^3.0",
"nette/forms": "^3.0",
"nette/utils": "^3.0 || ^4.0",
"latte/latte": "^2.5 || ^3.0",
"nette/application": "^3.0"
},
"require-dev": {
"nette/database": "^3.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"php-parallel-lint/php-console-highlighter": "^0.4",
"phpstan/phpstan": "^0.12 || ^1.6",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-nette": "^0.12 || ^1.0",
"nette/tester": "^2.3"
},
"autoload": {
"psr-0": {
"TwiGrid": "src/"
}
},
"scripts": {
"ci": [
"@phplint",
"@phpstan",
"@test"
],
"phplint": "parallel-lint --colors src/ tests/",
"phpstan": "phpstan analyze",
"test": "tester -C --colors 1 tests/"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}