This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 loc) · 2.01 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
{
"name": "martin-ro/filament-page-blocks",
"description": "Block-Based Page Builder Skeleton for Filament Apps",
"keywords": [
"martin-ro",
"laravel",
"filament-page-blocks"
],
"homepage": "https://github.com/martin-ro/filament-page-blocks",
"license": "MIT",
"authors": [
{
"name": "Martin Ro",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"filament/filament": "^3.0-stable",
"illuminate/contracts": "^10.0 | ^11.0",
"spatie/laravel-package-tools": "^1.16.4"
},
"require-dev": {
"laravel/pint": "^1.16.1",
"nunomaduro/collision": "^8.1.1||^7.10.0",
"orchestra/testbench": "^9.1.2||^8.22.0",
"pestphp/pest": "^2.34.8",
"pestphp/pest-plugin-arch": "^2.7",
"pestphp/pest-plugin-laravel": "^2.4",
"spatie/laravel-ray": "^1.36.2"
},
"autoload": {
"psr-4": {
"MartinRo\\FilamentPageBlocks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MartinRo\\FilamentPageBlocks\\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": {
"composer/package-versions-deprecated": true,
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"MartinRo\\FilamentPageBlocks\\FilamentPageBlocksServiceProvider"
],
"aliases": {
"FilamentPageBlocks": "MartinRo\\FilamentPageBlocks\\Facades\\FilamentPageBlocks"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}