-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
91 lines (90 loc) · 2.51 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "fusioncms/cms",
"description": "Core of FusionCMS",
"license": "MIT",
"authors": [
{
"name": "Shea Lewis (Kai)",
"email": "[email protected]"
}
],
"autoload": {
"classmap": [
"database/"
],
"psr-4": {
"Fusion\\": "src/"
},
"files": [
"helpers/app.php",
"helpers/blade.php",
"helpers/datetime.php",
"helpers/fields.php",
"helpers/forms.php",
"helpers/integers.php",
"helpers/matrix.php",
"helpers/menus.php",
"helpers/misc.php",
"helpers/paths.php",
"helpers/relationships.php",
"helpers/seo.php",
"helpers/settings.php",
"helpers/strings.php",
"helpers/themes.php",
"helpers/users.php"
]
},
"autoload-dev": {
"classmap": [
"tests/stubs/laravel/themes"
],
"psr-4": {
"Fusion\\Tests\\": "tests/src/",
"App\\": "tests/stubs/laravel/app/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3|^8.0",
"composer/semver": "^1.5",
"doctrine/dbal": "^2.9",
"illuminate/support": "^8.20",
"laravel/sanctum": "^2.3",
"laravel/scout": "^8.0",
"laravel/ui": "^3.0",
"league/glide": "^1.5",
"league/glide-laravel": "^1.0",
"spatie/laravel-activitylog": "^3.11",
"spatie/laravel-analytics": "^3.10",
"spatie/laravel-backup": "^6.11",
"spatie/laravel-permission": "^3.16",
"spatie/laravel-query-builder": "^3.2",
"spatie/laravel-searchable": "^1.7",
"symfony/yaml": "^5.2"
},
"require-dev": {
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^5.0",
"orchestra/testbench": "^6.11",
"phpunit/phpunit": "^9.3.3",
"symfony/css-selector": "^4.3",
"symfony/dom-crawler": "^4.3"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Fusion\\Providers\\FusionServiceProvider"
],
"aliases": {
"Addon": "Fusion\\Facades\\Addon",
"Theme": "Fusion\\Facades\\Theme",
"Fusion": "Fusion\\Facades\\Fusion",
"Setting": "Fusion\\Facades\\Setting"
}
}
}
}