-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
62 lines (62 loc) · 1.41 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
{
"name": "ycs77/laravel-wizard",
"description": "A web setup wizard for Laravel application.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Lucas Yang",
"email": "yangchenshin77@gmail.com"
}
],
"keywords": [
"laravel",
"wizard",
"step",
"steps",
"component",
"plugin"
],
"homepage": "https://github.com/ycs77/laravel-wizard",
"require": {
"php": ">=8.2",
"laravel/framework": ">=11.0"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"orchestra/testbench": ">=7.0",
"phpunit/phpunit": ">=9.5.10"
},
"autoload": {
"psr-4": {
"Ycs77\\LaravelWizard\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ycs77\\LaravelWizard\\Test\\": "tests"
},
"files": [
"tests/utils.php"
],
"classmap": [
"tests/Stubs/database/migrations"
]
},
"extra": {
"laravel": {
"providers": [
"Ycs77\\LaravelWizard\\WizardServiceProvider"
],
"aliases": {
"Wizard": "Ycs77\\LaravelWizard\\Facades\\Wizard"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}