generated from filamentphp/plugin-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
110 lines (110 loc) · 3.98 KB
/
composer.json
File metadata and controls
110 lines (110 loc) · 3.98 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "solution-forest/inspirecms-core",
"description": "InspireCMS is a flexible, un-opinionated content engine for Laravel, built on Filament. Visually model any content structure, empower editors with a modern UI, and render everything using standard Blade templates. Features include live preview, granular user roles, SEO tools, effortless media management, and a powerful Blueprint Builder.",
"keywords": [
"solution-forest",
"laravel",
"inspirecms-core",
"cms",
"filament"
],
"homepage": "https://github.com/solutionforest/inspirecms-core",
"support": {
"issues": "https://github.com/solutionforest/inspirecms-core/issues",
"source": "https://github.com/solutionforest/inspirecms-core"
},
"license": "MIT",
"authors": [
{
"name": "carly",
"email": "info@solutionforest.net",
"role": "Developer"
}
],
"require": {
"php": ">=8.2",
"khatabwedaa/blade-css-icons": "^1.5",
"lara-zeus/spatie-translatable": "^1.0",
"laravel/framework": "^11.0|^12.0",
"pboivin/filament-peek": "^3.0",
"phiki/phiki": "^1.1",
"solution-forest/filament-field-group": "^2.0",
"solution-forest/inspirecms-support": "self.version",
"spatie/laravel-package-tools": "^1.15.0",
"spatie/laravel-permission": "^6.0"
},
"require-dev": {
"larastan/larastan": "^3.0",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^8.0",
"orchestra/testbench": "^9.0|^10.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-arch": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"pestphp/pest-plugin-livewire": "^3.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"rector/rector": "^2.0",
"spatie/laravel-ray": "^1.26"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"SolutionForest\\InspireCms\\": "src/",
"SolutionForest\\InspireCms\\Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"SolutionForest\\InspireCms\\Tests\\": "tests/src",
"SolutionForest\\InspireCms\\Tests\\Database\\Factories\\": "tests/database/factories/",
"SolutionForest\\InspireCms\\Support\\": "vendor/solution-forest/inspirecms-support/src/",
"SolutionForest\\InspireCms\\Support\\Tests\\": "vendor/solution-forest/inspirecms-support/tests/src/",
"SolutionForest\\InspireCms\\Support\\Tests\\Database\\Factories\\": "vendor/solution-forest/inspirecms-support/tests/database/factories/"
}
},
"scripts": {
"post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi",
"analyse": "phpstan analyse",
"lint": "pint",
"refactor": "rector",
"test": "pest",
"test:lint": "pint --test",
"test:refactor": "rector --dry-run"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"SolutionForest\\InspireCms\\InspireCmsServiceProvider",
"SolutionForest\\InspireCms\\CmsPanelProvider"
],
"aliases": {
"InspireCms": "SolutionForest\\InspireCms\\Facades\\InspireCms"
}
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"repositories": [
{
"type": "path",
"url": "../inspirecms-support",
"options": {
"versions": {
"solution-forest/inspirecms-support": "dev-main"
}
}
}
]
}