-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
composer.json
72 lines (72 loc) · 1.81 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
{
"name": "okipa/laravel-table",
"description": "Generate tables from Eloquent models.",
"type": "library",
"keywords": [
"Okipa",
"package",
"laravel",
"php",
"livewire",
"table",
"list",
"laravel-table",
"generate",
"generator",
"generation",
"html"
],
"homepage": "https://github.com/okipa/laravel-table",
"license": "MIT",
"authors": [
{
"name": "Arthur LORENT",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "8.1.*|8.2.*",
"illuminate/contracts": "^9.0|^10.0",
"livewire/livewire": "^2.0"
},
"require-dev": {
"ext-pdo": "*",
"brianium/paratest": "^6.4",
"laravel/pint": "^1.1",
"nunomaduro/collision": "^6.0",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^7.0|^8.0",
"phpmd/phpmd": "^2.11"
},
"autoload": {
"psr-4": {
"Okipa\\LaravelTable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Tests\\Database\\Factories\\": "tests/database/factories/"
}
},
"scripts": {
"pint": ["vendor/bin/pint"],
"phpmd": "vendor/bin/phpmd config,src,tests text phpmd.xml",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=2G",
"phpunit" : "vendor/bin/phpunit",
"test": ["@pint", "@phpmd", "@phpstan", "@phpunit"]
},
"extra": {
"laravel": {
"providers": [
"Okipa\\LaravelTable\\LaravelTableServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}