-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
53 lines (53 loc) · 1.23 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": "spiral/data-grid",
"type": "library",
"license": "MIT",
"description": "Data Grid specification builder",
"homepage": "https://spiral.dev",
"support": {
"issues": "https://github.com/spiral/framework/issues",
"source": "https://github.com/spiral/data-grid"
},
"authors": [
{
"name": "Valentin Vintsukevich (vvval)",
"email": "valentin@spiralscout.com"
},
{
"name": "Anton Titov (wolfy-j)",
"email": "wolfy-j@spiralscout.com"
}
],
"require": {
"php": ">=8.1",
"spiral/attributes": "^2.10 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.20",
"ramsey/uuid": "^4.2.3",
"vimeo/psalm": "^4.27"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Spiral\\DataGrid\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Spiral\\Tests\\DataGrid\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-3.0": "3.0.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}