-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.43 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
{
"name": "starfolksoftware/inertia-table",
"description": "Inertia.js Front-end Components for Spatie's Laravel Query Builder",
"homepage": "https://github.com/starfolksoftware/inertia-table",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Faruk Nasir",
"email": "faruk@starfolksoftware.com"
},
{
"name": "Pascal Baljet",
"email": "pascal@protone.media"
}
],
"require": {
"php": "^8.1|^8.2",
"illuminate/support": "^9.37|^10.0|^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"inertiajs/inertia-laravel": "^2.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"InertiaTable\\": "php"
}
},
"autoload-dev": {
"psr-4": {
"InertiaTable\\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": [
"InertiaTable\\InertiaTableServiceProvider"
]
}
}
}