-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
61 lines (60 loc) · 1.5 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
{
"name": "fusionphp/fusion",
"description": "A Laravel package to bridge the gap between Laravel and Vue/React.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aaron Francis",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11",
"illuminate/console": "^11",
"illuminate/process": "^11",
"laravel/framework": "^11",
"inertiajs/inertia-laravel": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5|^11",
"orchestra/testbench": "^9.5",
"nikic/php-parser": "^5.4"
},
"autoload": {
"files": [
"functions.php"
],
"psr-4": {
"Fusion\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fusion\\Tests\\": "tests/",
"App\\": "workbench/app/"
}
},
"extra": {
"laravel": {
"providers": [
"Fusion\\Providers\\FusionServiceProvider"
]
}
},
"scripts": {
"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",
"@php vendor/bin/testbench serve --ansi"
],
"dev": [
]
}
}