-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.99 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.99 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
{
"name": "blumilksoftware/lmt",
"description": "Blumilksoftware lmt",
"type": "project",
"license": "MIT",
"require": {
"php": "^8.3",
"filament/filament": "^3.3.48",
"filament/spatie-laravel-media-library-plugin": "^3.3.48",
"josiasmontag/laravel-recaptchav3": "^1.0.4",
"laravel/framework": "^11.48.0",
"laravel/tinker": "^2.11.1",
"livewire/livewire": "^3.7.10",
"spatie/eloquent-sortable": "^4.5.2",
"fakerphp/faker": "^1.24.1"
},
"require-dev": {
"blumilksoftware/codestyle": "^4.1.0",
"laravel/telescope": "^5.17.0",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.8.3",
"phpunit/phpunit": "^11.5.53"
},
"autoload": {
"psr-4": {
"Blumilksoftware\\Lmt\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"test": [
"@putenv XDEBUG_MODE=off",
"@php artisan test"
],
"cs": "./vendor/bin/php-cs-fixer fix --dry-run --diff --config codestyle.php",
"csf": "./vendor/bin/php-cs-fixer fix --diff --config codestyle.php"
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}