-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.2 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.2 KB
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
{
"name": "livewire/volt",
"description": "An elegantly crafted functional API for Laravel Livewire.",
"keywords": [
"laravel",
"livewire",
"volt"
],
"homepage": "https://github.com/livewire/volt",
"license": "MIT",
"support": {
"issues": "https://github.com/livewire/volt/issues",
"source": "https://github.com/livewire/volt"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
},
{
"name": "Nuno Maduro",
"email": "nuno@laravel.com"
}
],
"require": {
"php": "^8.1",
"laravel/framework": "^10.38.2|^11.0|^12.0|^13.0",
"livewire/livewire": "^3.6.1|^4.0"
},
"require-dev": {
"laravel/folio": "^1.1",
"orchestra/testbench": "^8.36|^9.15|^10.8|^11.0",
"pestphp/pest": "^2.9.5|^3.0|^4.0",
"phpstan/phpstan": "^1.10|^2.1"
},
"autoload": {
"psr-4": {
"Livewire\\Volt\\": "src/"
},
"files": [
"functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/",
"Workbench\\Database\\": "workbench/database/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"laravel": {
"providers": [
"Livewire\\Volt\\VoltServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"audit": {
"block-insecure": false
},
"sort-packages": true
},
"scripts": {
"post-autoload-dump": "@composer run prepare",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": [
"@composer run prepare",
"@php vendor/bin/testbench workbench:create-sqlite-db",
"@php vendor/bin/testbench migrate:refresh"
],
"start": [
"@composer run build",
"@php vendor/bin/testbench serve"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}