-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.47 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
{
"name": "protonemedia/inertiajs-tables-laravel-query-builder",
"description": "Inertia.js Front-end Components for Spatie's Laravel Query Builder",
"homepage": "https://github.com/protonemedia/inertiajs-tables-laravel-query-builder",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Pascal Baljet",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0|^8.1|^8.2",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"inertiajs/inertia-laravel": "^0.6.9",
"orchestra/testbench": "^6.23|^7.0",
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"ProtoneMedia\\LaravelQueryBuilderInertiaJs\\": "php"
}
},
"autoload-dev": {
"psr-4": {
"ProtoneMedia\\LaravelQueryBuilderInertiaJs\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --verbose"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"ProtoneMedia\\LaravelQueryBuilderInertiaJs\\InertiaTableServiceProvider"
]
}
}
}