-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
79 lines (79 loc) · 2.1 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
{
"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",
"livewire/livewire": "^3.0"
},
"require-dev": {
"laravel/folio": "^1.1",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^8.15.0|^9.0",
"pestphp/pest": "^2.9.5",
"phpstan/phpstan": "^1.10"
},
"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": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": 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
}