-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
46 lines (46 loc) · 1.3 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
{
"name": "harmonic/inertia-table",
"description": "Easily create Inertia JS tables from Eloquent models",
"license": "MIT",
"authors": [
{
"name": "Craig Harman",
"email": "[email protected]",
"homepage": "https://harmonic.com.au"
}
],
"homepage": "https://github.com/harmonic/inertiatable",
"keywords": ["Laravel", "inertiajs", "inertia", "InertiaTable"],
"require": {
"illuminate/support": "~5 || ~6",
"inertiajs/inertia-laravel": "^0.2.0",
"reinink/remember-query-strings": "^0.1.0",
"symfony/process": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3.0 || ~4.0",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"harmonic\\InertiaTable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"harmonic\\InertiaTable\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"harmonic\\InertiaTable\\InertiaTableServiceProvider"
],
"aliases": {
"InertiaTable": "harmonic\\InertiaTable\\Facades\\InertiaTable"
}
}
}
}