-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.46 KB
/
Copy pathcomposer.json
File metadata and controls
57 lines (57 loc) · 1.46 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
{
"name": "takielias/tablar-kit",
"description": "The Elegance of Tablar Dashboard",
"license": "MIT",
"authors": [
{
"name": "Taki Elias",
"email": "taki.elias@email.com",
"homepage": "https://ebuz.xyz"
}
],
"homepage": "https://github.com/takielias/tablar-kit",
"keywords": [
"Laravel",
"Tablar",
"TablarKit"
],
"minimum-stability": "stable",
"require": {
"php": "^8.3",
"illuminate/filesystem": "^11.0|^12.0|^13.0",
"illuminate/support": "^11.0|^12.0|^13.0",
"illuminate/view": "^11.0|^12.0|^13.0",
"nesbot/carbon": "^3.0",
"takielias/tablar": "*",
"takielias/lab": "*"
},
"require-dev": {
"orchestra/testbench": "^9.0|^10.0|^11.0",
"gajus/dindent": "^2.0",
"phpunit/phpunit": "^11.0|^12.0",
"laravel/pint": "^1.0"
},
"autoload": {
"psr-4": {
"TakiElias\\TablarKit\\": "src/"
},
"files": [
"src/Helpers/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"TakiElias\\TablarKit\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"TakiElias\\TablarKit\\TablarKitServiceProvider"
],
"aliases": {
"TablarKit": "TakiElias\\TablarKit\\Facades\\TablarKit"
}
}
}
}