-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 958 Bytes
/
composer.json
File metadata and controls
40 lines (40 loc) · 958 Bytes
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
{
"name": "freezy-bee/light-sortable-grid",
"type": "library",
"description": "Light drag & drop sortable grid for Doctrine + Nette Framework.",
"keywords": [
"nette",
"freezy-bee",
"datagrid"
],
"homepage": "http://freezybee.ifire.cz",
"license": "MIT",
"authors": [
{
"name": "Jakub Janata",
"homepage": "https://ifire.cz"
}
],
"require": {
"php": "^8.1",
"nette/application": "^2.4 || ^3.0",
"nette/forms": "^2.4 || ^3.0",
"latte/latte": "^2.4 || ^3.0",
"doctrine/orm": "^2.0 || ^3.0",
"nette/di": "^2.4 || ^3.0"
},
"require-dev": {
"tracy/tracy": "^2.3",
"phpstan/phpstan": "^2.1",
"symplify/easy-coding-standard": "^13.0",
"phpstan/phpstan-nette": "^2.0"
},
"suggest": {
"nette/di": "The extension can be registered using nette/di into your application"
},
"autoload": {
"psr-4": {
"FreezyBee\\LightSortableGrid\\": "src/"
}
}
}