-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1011 Bytes
/
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
{
"name": "irpcpro/table-soft",
"description": "A package for managing table data.convert model data to objects of table.",
"keywords": ["model_to_table", "laravel", "package", "filter_model", "draw_table"],
"version": "2.0.0",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "IRPCPRO",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Irpcpro\\TableSoft\\": "src/"
},
"files": [
"src/Helpers/Helpers.php"
]
},
"require": {
"php": "^8.0",
"illuminate/support": ">=5.0.0"
},
"extra": {
"laravel": {
"providers": [
"Irpcpro\\TableSoft\\ServiceProviders\\TableSoftServiceProvider"
],
"aliases": {
"TableSoft": "Irpcpro\\TableSoft\\Facade\\TableSoftFacade"
}
}
},
"minimum-stability": "stable",
"prefer-stable" : true
}