-
-
Notifications
You must be signed in to change notification settings - Fork 222
/
composer.json
109 lines (109 loc) · 2.61 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "power-components/livewire-powergrid",
"description": "PowerGrid generates Advanced Datatables using Laravel Livewire.",
"homepage": "https://github.com/power-components/livewire-powergrid",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Luan Freitas",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "DanSysAnalyst",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"livewire/livewire": "^3.5.0",
"laravel/prompts": "*"
},
"require-dev": {
"composer/composer": "^2.7.9",
"laravel/pint": "1.17",
"laradumps/laradumps-core": "^2.2.2",
"larastan/larastan": "^2.9.8",
"pestphp/pest": "^2.35.1",
"orchestra/testbench": "^9.4",
"laradumps/laradumps": "^3.2",
"laravel/scout": "^10.11.3",
"openspout/openspout": "^4.24.5"
},
"suggest": {
"openspout/openspout": "Required to export XLS and CSV"
},
"autoload": {
"psr-4": {
"PowerComponents\\LivewirePowerGrid\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"PowerComponents\\LivewirePowerGrid\\Tests\\": "tests"
},
"files": [
"tests/Plugins/Autoload.php"
]
},
"extra": {
"laravel": {
"providers": [
"PowerComponents\\LivewirePowerGrid\\Providers\\PowerGridServiceProvider"
]
}
},
"scripts": {
"pint:fix": "./vendor/bin/pint",
"test": "@test:sqlite",
"test:pint": "./vendor/bin/pint --test",
"test:sqlite": [
"./vendor/bin/pest --compact"
],
"test:mysql": [
"./vendor/bin/pest --compact --configuration phpunit.mysql.xml"
],
"test:pgsql": [
"./vendor/bin/pest --compact --configuration phpunit.pgsql.xml"
],
"test:sqlsrv": [
"./vendor/bin/pest --configuration phpunit.sqlsrv.xml"
],
"test:typesense": [
"curl http://localhost:8108/health"
],
"test:types": "./vendor/bin/phpstan analyse --ansi --memory-limit=-1",
"test:dbs": [
"@test:sqlite",
"@test:mysql",
"@test:pgsql"
],
"ds:check": [
"@php vendor/bin/laradumps check --dir=src,resources,tests --text=dump,dd --ignore=dumpTo,Dump stop-on-failure"
],
"verify": [
"@ds:check",
"@test:pint",
"@test:types",
"@test"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true
}
},
"repositories": [
{
"type": "path",
"url": "../../../"
}
]
}