-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.95 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.95 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
{
"name": "aerni/livewire-forms",
"description": "A Statamic forms framework powered by Laravel Livewire",
"keywords": [
"statamic",
"livewire",
"forms"
],
"homepage": "https://github.com/aerni/statamic-livewire-forms",
"license": "proprietary",
"authors": [
{
"name": "Michael Aerni",
"email": "hello@michaelaerni.ch",
"homepage": "https://www.michaelaerni.ch",
"role": "Developer"
}
],
"require": {
"php": "^8.3",
"marcorieser/statamic-livewire": "^5.0",
"laravel/framework": "^12.0 || ^13.0",
"laravel/prompts": "^0.3.0",
"livewire/livewire": "^4.1",
"spatie/invade": "^2.0",
"statamic/cms": "^6.0"
},
"require-dev": {
"laravel/pint": "^1.27",
"orchestra/testbench": "^10.0 || ^11.0",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-laravel": "^4.0",
"pestphp/pest-plugin-livewire": "^4.0"
},
"autoload": {
"psr-4": {
"Aerni\\LivewireForms\\": "src"
}
},
"autoload-dev" : {
"psr-4" : {
"Aerni\\LivewireForms\\Tests\\" : "tests"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pixelfear/composer-dist-plugin": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": [
"./vendor/bin/pest"
]
},
"extra": {
"statamic": {
"name": "Livewire Forms",
"description": "A Statamic forms framework powered by Laravel Livewire"
},
"laravel": {
"providers": [
"Aerni\\LivewireForms\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}