-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
167 lines (167 loc) · 5.09 KB
/
composer.json
File metadata and controls
167 lines (167 loc) · 5.09 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"$schema": "https://getcomposer.org/schema.json",
"name": "norman-huth/hellofresh-database",
"type": "project",
"description": "Unofficial HelloFresh recipe database with weekly menus, shopping lists, ingredient tracking, multi-language support, and a REST API.",
"authors": [
{
"name": "Norman Huth",
"role": "Lead Developer",
"homepage": "https://huth.it"
}
],
"keywords": [
"hellofresh",
"recipes",
"recipe-database",
"recipe-api",
"rest-api",
"weekly-menus",
"shopping-list",
"meal-planning",
"ingredients",
"cooking",
"laravel",
"livewire",
"flux-ui",
"tailwindcss"
],
"license": "MIT",
"repositories": [
{
"type": "composer",
"url": "https://composer.fluxui.dev"
}
],
"require": {
"php": "^8.4",
"ext-dom": "*",
"ext-pdo": "*",
"laravel/framework": "^12.48",
"laravel/horizon": "^5.43",
"laravel/pulse": "^1.5",
"laravel/reverb": "^1.7",
"laravel/sanctum": "^4.2",
"laravel/tinker": "^2.11",
"livewire/flux-pro": "^2.11",
"norman-huth/gd-text": "^1.0",
"sentry/sentry-laravel": "^4.20",
"spatie/laravel-activitylog": "^4.10",
"spatie/laravel-medialibrary": "^11.17",
"spatie/laravel-translatable": "^6.12"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.6",
"brianium/paratest": "^7.8",
"driftingly/rector-laravel": "^2.1",
"fakerphp/faker": "^1.24",
"infection/infection": "^0.29",
"itsgoingd/clockwork": "^5.3",
"larastan/larastan": "^3.9",
"laravel/boost": "^1.8",
"laravel/pail": "^1.2",
"laravel/pint": "^1.27",
"mockery/mockery": "^1.6",
"norman-huth/find-command": "^1.2",
"nunomaduro/collision": "^8.8",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpunit/phpunit": "^11.5",
"rector/rector": "^2.3",
"roave/security-advisories": "dev-latest",
"spatie/laravel-ray": "^1.43"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi",
"@php artisan development:ai-background-update --ansi"
],
"post-install-cmd": [
"@php artisan system:check-requirements --ansi"
],
"post-update-cmd": [
"@php artisan system:check-requirements --ansi",
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"ide-helper": [
"@php artisan ide-helper:models --nowrite --ansi",
"@php artisan ide-helper:generate --ansi",
"@php artisan ide-helper:meta --ansi"
],
"pint": "./vendor/bin/pint --parallel --ansi",
"rector": "./vendor/bin/rector --ansi",
"analyse": "./vendor/bin/phpstan analyse -v --ansi",
"mutation": "@php vendor/bin/infection --configuration=.infection.json --threads=$(nproc) --ansi",
"lint": [
"@pint"
],
"checks": [
"@rector",
"@lint",
"@analyse"
],
"full-checks": [
"@checks",
"@mutation"
],
"test": [
"@php artisan config:clear --ansi",
"@php artisan test --parallel"
]
},
"scripts-descriptions": {
"analyse": "Run static analysis to find bugs",
"checks": "Running all analysis and fixer tools",
"full-checks": "Running all analysis and fixer tools and infection",
"ide-helper": "Generate IDE helper files",
"lint": "Fix code style issues",
"mutation": "Run mutation testing using Infection with parallel threads",
"pint": "Run Laravel Pint CS Fixer",
"rector": "Instant Upgrades and Automated Refactoring Code"
},
"scripts-aliases": {
"checks": [
"c"
],
"full-checks": [
"fc"
]
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}