-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.49 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
{
"name": "blumilksoftware/website",
"version": "1.0.0",
"type": "project",
"description": "website project.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"require": {
"php": "^8.3",
"ext-intl": "*",
"ext-pdo": "*",
"codezero/laravel-localized-routes": "^4.0.1",
"codezero/laravel-unique-translation": "^4.3.1",
"filament/filament": "^3.2.128",
"filament/spatie-laravel-translatable-plugin": "^3.2.128",
"guzzlehttp/guzzle": "^7.9.2",
"laravel/framework": "^11.34.2",
"laravel/sanctum": "^4.0.5",
"laravel/tinker": "^2.10.0",
"mvenghaus/filament-plugin-translatable-inline": "^3.0.8",
"nesbot/carbon": "^3.8.2",
"sentry/sentry-laravel": "^4.10.1"
},
"require-dev": {
"blumilksoftware/codestyle": "^4.0.0",
"fakerphp/faker": "^1.24.1",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.5.0",
"larastan/larastan": "^3.0.2",
"phpunit/phpunit": "^11.5.0",
"spatie/laravel-ignition": "^2.9.0"
},
"autoload": {
"psr-4": {
"Blumilk\\Website\\": "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"
],
"analyse": "./vendor/bin/phpstan analyse",
"cs": "./vendor/bin/php-cs-fixer fix --dry-run --diff --config codestyle.php",
"csf": "./vendor/bin/php-cs-fixer fix --diff --config codestyle.php",
"fresh:demo": "@php artisan migrate:fresh --seed"
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"codezero/composer-preload-files": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}