-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
65 lines (65 loc) · 1.8 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "amirami/livewire-datatables",
"description": "Livewire DataTables components for back-end. Modular, easy to use, with tons of features.",
"keywords": [
"amirami",
"laravel",
"livewire",
"datatables",
"livewire-datatables"
],
"homepage": "https://github.com/amiranagram/livewire-datatables",
"license": "MIT",
"authors": [
{
"name": "Amir Rami",
"email": "me@amirrami.com",
"role": "Developer",
"homepage": "https://amirrami.com"
}
],
"require": {
"php": "^7.3|^8.0",
"illuminate/cache": "^8.0",
"illuminate/contracts": "^8.0",
"illuminate/database": "^8.0",
"illuminate/support": "^8.0",
"livewire/livewire": "^2.6.7"
},
"require-dev": {
"brianium/paratest": "^6.2",
"calebporzio/sushi": "^2.1",
"mockery/mockery": "^1.3.3",
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.0",
"orchestra/testbench-dusk": "^6.0",
"phpunit/phpunit": "^9.3",
"spatie/laravel-ray": "^1.25"
},
"autoload": {
"psr-4": {
"Amirami\\LivewireDataTables\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Amirami\\LivewireDataTables\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Amirami\\LivewireDataTables\\LivewireDataTablesServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}