-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
103 lines (103 loc) · 3.11 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"autoload": {
"files": [
"app/helpers.php"
],
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"description": "An application for managing household chores.",
"extra": {
"laravel": {
"dont-discover": []
}
},
"keywords": [
"chores",
"home"
],
"minimum-stability": "stable",
"name": "jhwelch/choremanager",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/JHWelch/feature-flags"
}
],
"require": {
"php": "^8.2",
"composer/composer": "^2.2",
"filament/filament": "^3.2",
"laravel-notification-channels/fcm": "^4.2",
"laravel/framework": "^11.20",
"laravel/jetstream": "^5.0",
"laravel/sanctum": "^4.0",
"laravel/telescope": "^5.0",
"laravel/tinker": "^2.9",
"league/commonmark": "^2.2",
"livewire/livewire": "^3.3",
"spatie/icalendar-generator": "^2.3",
"spatie/laravel-ray": "^1.35",
"wire-elements/modal": "^2.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.10",
"barryvdh/laravel-ide-helper": "^3.0",
"brianium/paratest": "^7.4",
"fakerphp/faker": "^1.23",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"pestphp/pest-plugin-livewire": "^3.0"
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan filament:upgrade"
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-update-cmd": [
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
"@php artisan filament:upgrade"
],
"fix": "pint",
"ide-helper": "@php artisan ide-helper:models --reset --write --write-mixin",
"test:lint": "pint --test",
"test:psr4": "composer dump-autoload --no-scripts --no-interaction 2>&1 | grep 'does not comply with psr-4' || exit 0; exit 1",
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "pest -p",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
},
"type": "project"
}