-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.24 KB
/
composer.json
File metadata and controls
90 lines (90 loc) · 2.24 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "picobaz/gridview",
"description": "A powerful and flexible Laravel data grid component with advanced features including pagination, filtering, sorting, bulk actions, inline editing, and exports to CSV/Excel/PDF. Build beautiful data tables with ease!",
"keywords": [
"laravel",
"gridview",
"data-grid",
"data-table",
"pagination",
"sorting",
"filtering",
"export",
"csv",
"excel",
"pdf",
"bulk-actions",
"inline-editing",
"table-widget",
"admin-panel",
"dashboard",
"crud"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "PicoBaz",
"email": "picobaz3@gmail.com",
"homepage": "https://github.com/PicoBaz",
"role": "Developer"
}
],
"homepage": "https://github.com/PicoBaz/gridview",
"support": {
"issues": "https://github.com/PicoBaz/gridview/issues",
"source": "https://github.com/PicoBaz/gridview",
"email": "picobaz3@gmail.com",
"telegram": "https://t.me/picobaz"
},
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/database": "^8.0|^9.0|^10.0|^11.0|^12.0",
"illuminate/http": "^8.0|^9.0|^10.0|^11.0|^12.0",
"maatwebsite/excel": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0",
"orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
"mockery/mockery": "^1.4",
"phpstan/phpstan": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload": {
"psr-4": {
"Picobaz\\GridView\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Picobaz\\GridView\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Picobaz\\GridView\\GridViewServiceProvider"
],
"aliases": {
"GridView": "Picobaz\\GridView\\Facades\\GridView"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"format": "vendor/bin/php-cs-fixer fix",
"analyse": "vendor/bin/phpstan analyse src"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}