forked from Power-Components/livewire-powergrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
80 lines (80 loc) · 2.5 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
{
"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": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Luan Freitas",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"livewire/livewire": "^2.10",
"doctrine/dbal": "3.3.*|2.12.1",
"openspout/openspout": "^4.6"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"illuminate/support": "^8.18|^9.0",
"pestphp/pest": "^1.21",
"orchestra/testbench": "^6.17 | ^7.0",
"composer/composer": "^2.1",
"pestphp/pest-plugin-faker": "^1.0",
"pestphp/pest-plugin-livewire": "^1.0",
"friendsofphp/php-cs-fixer": "^3.9",
"nunomaduro/larastan": "^1.0 | ^2.1",
"laradumps/laradumps": "^1.1"
},
"autoload": {
"psr-4": {
"PowerComponents\\LivewirePowerGrid\\": "src"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"PowerComponents\\LivewirePowerGrid\\Tests\\" : "tests"
}
},
"extra": {
"laravel": {
"providers": [
"PowerComponents\\LivewirePowerGrid\\Providers\\PowerGridServiceProvider"
]
}
},
"scripts": {
"cs-fixer": "./vendor/bin/php-cs-fixer fix --verbose --dry-run --using-cache=no --stop-on-violation",
"fix": "./vendor/bin/php-cs-fixer fix",
"test": "@test:sqlite",
"test:sqlite": "./vendor/bin/pest --configuration phpunit.sqlite.xml",
"test:mysql": "./vendor/bin/pest --configuration phpunit.mysql.xml",
"test:pgsql": "./vendor/bin/pest --configuration phpunit.pgsql.xml",
"test:sqlsrv": "./vendor/bin/pest --configuration phpunit.sqlsrv.xml",
"test:types": "./vendor/bin/phpstan analyse --ansi --memory-limit=-1",
"test:dbs": [
"@test:sqlite",
"@test:mysql",
"@test:pgsql",
"@test:sqlsrv"
],
"check": [
"@cs-fixer",
"@test:types",
"@test"
]
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true
}
}
}