-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.46 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": "pascal@protone.media"
}
],
"require": {
"php": "^7.4|^8.0|^8.1",
"illuminate/support": "^8.67|^v9.0.0-beta.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"inertiajs/inertia-laravel": "^0.5",
"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"
]
}
}
}