-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.71 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
{
"name": "leuverink/livewire-property-groups",
"description": "Livewire Attribute for grouping properties",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Leuverink\\PropertyAttribute\\": "src/",
"Tests\\": "tests/"
},
"files": [
"src/helpers.php"
]
},
"authors": [
{
"name": "gwleuverink",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"livewire/livewire": "^3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"laravel/pint": "^1",
"larastan/larastan": "^2.9",
"squizlabs/php_codesniffer": "^3",
"tightenco/duster": "^3",
"tightenco/tlint": "^9",
"orchestra/testbench": "^9",
"pestphp/pest": "^2.35"
},
"scripts": {
"lint": "vendor/bin/duster lint",
"fix": "vendor/bin/duster fix",
"analyze": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan analyse --generate-baseline",
"test": "@php vendor/bin/pest --bail",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "@php vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"serve": [
"Composer\\Config::disableProcessTimeout",
"@build",
"@php vendor/bin/testbench serve --ansi"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}