-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
89 lines (89 loc) · 2.7 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
{
"name": "tjmpromos/sortable-gallery",
"description": "Provides a sortable image gallery component with a Filament admin interface.",
"keywords": [
"tjmpromos",
"laravel",
"sortable-gallery",
"filament",
"filament-package"
],
"homepage": "https://github.com/tjmpromos/sortable-gallery",
"license": "MIT",
"authors": [
{
"name": "Mike Wall",
"email": "[email protected]",
"homepage": "https://mikewall.dev",
"role": "Developer"
},
{
"name": "Cory Dymond",
"email": "[email protected]",
"homepage": "https://corydymond.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/contracts": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"filament/filament": "^3.0",
"filament/forms": "^3.0",
"filament/tables": "^3.0",
"spatie/laravel-tags": "^4.5.1",
"spatie/laravel-medialibrary": "^11",
"filament/spatie-laravel-media-library-plugin": "^v3.0.47",
"filament/spatie-laravel-tags-plugin": "^v3.0.47",
"livewire/livewire": "^v3.0.2"
},
"require-dev": {
"laravel/pint": "^v1.13.1",
"nunomaduro/collision": "^v7.8.1",
"nunomaduro/larastan": "^v2.6.4",
"orchestra/testbench": "^v8.10.1",
"pestphp/pest": "^v2.18.1",
"pestphp/pest-plugin-laravel": "^v2.2.0",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.14",
"spatie/laravel-package-tools": "^1.16.1",
"spatie/laravel-ray": "^1.33.0",
"tightenco/duster": "^2.4"
},
"autoload": {
"psr-4": {
"Tjmpromos\\SortableGallery\\": "src",
"Tjmpromos\\SortableGallery\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Tjmpromos\\SortableGallery\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Tjmpromos\\SortableGallery\\SortableGalleryServiceProvider"
],
"aliases": {
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}