forked from lara-zeus/sky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
94 lines (94 loc) · 2.26 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
92
93
94
{
"name": "lara-zeus/sky",
"description": "Lara-zeus sky is simple CMS for your website. It includes posts, pages, tags, and categories.",
"keywords": [
"laravel",
"lara-zeus",
"sky",
"cms",
"pages",
"posts",
"menu",
"news",
"wordpress laravel",
"wordpress alternative",
"laravel cms",
"filamentphp"
],
"homepage": "https://larazeus.com",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "php coder",
"email": "info@larazeus.com",
"role": "Owner"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"doctrine/dbal": "^3.3",
"filament/spatie-laravel-media-library-plugin": "^2.0",
"filament/spatie-laravel-tags-plugin": "^2.0",
"filament/spatie-laravel-translatable-plugin": "^2.0",
"lara-zeus/core": "^2.4",
"mohamedsabil83/filament-forms-tinyeditor": "^1.7",
"ryangjchandler/filament-navigation": "dev-with-rtl",
"spatie/laravel-medialibrary": "^10.0.0",
"spatie/laravel-sluggable": "^3.3",
"spatie/laravel-tags": "^4.4"
},
"require-dev": {
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0",
"laravel/pint": "^1.0",
"nunomaduro/larastan": "^2.0",
"pestphp/pest": "^1.21 || ^2.0",
"pestphp/pest-plugin-laravel": "^1.1 || ^2.0",
"pestphp/pest-plugin-livewire": "^1.0",
"pestphp/pest-plugin-parallel": "^0.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5|^10.0"
},
"autoload": {
"psr-4": {
"LaraZeus\\Sky\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LaraZeus\\Sky\\Tests\\": "tests"
}
},
"scripts": {
"pint": "vendor/bin/pint",
"test:pest": "vendor/bin/pest --parallel",
"test:phpstan": "vendor/bin/phpstan analyse",
"test": [
"@test:pest",
"@test:phpstan"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"LaraZeus\\Sky\\SkyServiceProvider"
]
}
},
"repositories": [
{
"type": "github",
"url": "https://github.com/atmonshi/filament-navigation"
}
]
}