forked from contributte/datagrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 1.93 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
64
{
"name": "ublaboo/datagrid",
"type": "library",
"description": "DataGrid for Nette Framework: filtering, sorting, pagination, tree view, table view, translator, etc",
"keywords": ["datagrid", "grid", "nette"],
"license": ["MIT"],
"authors": [
{
"name": "Pavel Janda",
"homepage": "http://paveljanda.com"
}
],
"autoload": {
"psr-4": {
"Ublaboo\\DataGrid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ublaboo\\DataGrid\\Tests\\": "tests"
}
},
"require": {
"php": ">=7.2",
"nette/application": "^3.0",
"nette/utils": "^3.0",
"nette/forms": "^3.0",
"nette/di": "^3.0",
"contributte/application": "^0.5",
"symfony/property-access": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"require-dev": {
"nette/tester": "^2.2",
"tracy/tracy": "^2.6",
"mockery/mockery": "~1.2",
"phpstan/phpstan": "^0.11",
"tharos/leanmapper": "~3.4",
"nextras/orm": "~3.1",
"doctrine/orm": "~2.6",
"nette/database": "~3.0",
"dibi/dibi": "^3.0.0 || ^4.0.0",
"phpstan/phpstan-strict-rules": "^0.11",
"ninjify/coding-standard": "^0.9",
"gamee/php-code-checker-rules": "^1.0"
},
"extra": {
"branch-alias": {
"dev-master": "6.1.x-dev"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"tests": [
"php vendor/nette/tester/src/tester.php tests/Api/UnitTests -C",
"php vendor/nette/tester/src/tester.php tests/Api/IntegrationTests -C",
"php vendor/nette/tester/src/tester.php tests/Api/DatabaseTests -j 1 -C",
"php vendor/nette/tester/src/tester.php tests/Api/AcceptanceTests -j 1 -C"
],
"phpstan": "vendor/phpstan/phpstan/bin/phpstan analyse -c phpstan.neon src --level 7",
"phpcs": "vendor/bin/phpcs --standard=vendor/ninjify/coding-standard/ruleset-gamee.xml --extensions=php,phpt --tab-width=4 --ignore=temp -sp src tests",
"phpcsfix": "vendor/bin/phpcbf --standard=vendor/ninjify/coding-standard/ruleset-gamee.xml --extensions=php,phpt --tab-width=4 --ignore=temp -sp src tests"
}
}