-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathcomposer.json
More file actions
154 lines (154 loc) · 5.25 KB
/
Copy pathcomposer.json
File metadata and controls
154 lines (154 loc) · 5.25 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
{
"$schema": "https://getcomposer.org/schema.json",
"name": "coollabsio/shoutrrr",
"type": "project",
"description": "Self-hostable social media scheduling and publishing for X, Bluesky, and LinkedIn.",
"keywords": [
"social-media",
"scheduling",
"publishing",
"self-hosted",
"laravel"
],
"license": "Apache-2.0",
"require": {
"php": "^8.5",
"dedoc/scramble": "^0.13.31",
"inertiajs/inertia-laravel": "^3.0",
"intervention/image": "^4.0",
"laravel/cashier": "^16.6",
"laravel/chisel": "^0.1.0",
"laravel/fortify": "^1.37.2",
"laravel/framework": "^13.7",
"laravel/mcp": "^0.8.2",
"laravel/octane": "^2.17",
"laravel/passport": "^13.7",
"laravel/socialite": "^5.27",
"laravel/tinker": "^3.0",
"laravel/wayfinder": "^0.1.14",
"league/flysystem-aws-s3-v3": "^3.0",
"sentry/sentry-laravel": "^4.26"
},
"require-dev": {
"brianium/paratest": "^7.20",
"driftingly/rector-laravel": "^2.5",
"fakerphp/faker": "^1.24",
"larastan/larastan": "^3.9",
"laravel/boost": "^2.4",
"laravel/pail": "^1.2.5",
"laravel/pao": "^1.0.6",
"laravel/pint": "^1.27",
"laravel/sail": "^1.53",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.9.3",
"pestphp/pest": "^4.7",
"pestphp/pest-plugin-laravel": "^4.1",
"rector/rector": "^2.4"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"setup": [
"composer install",
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"",
"@php -r \"preg_match('/^APP_KEY=.+/m', file_get_contents('.env')) || passthru('php artisan key:generate --no-interaction');\"",
"@php -r \"file_exists('storage/oauth-private.key') || passthru('php artisan passport:keys --no-interaction');\"",
"@php artisan storage:link --force",
"bun install",
"bun run build"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"@php artisan migrate --force --no-interaction",
"@php artisan db:seed --class=DefaultUserSeeder --force --no-interaction",
"@php artisan db:seed --class=DummyEngagementSeeder --force --no-interaction",
"@php artisan db:seed --class=DummyAnalyticsSeeder --force --no-interaction",
"bunx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74,#86efac\" \"php artisan serve --host=0.0.0.0\" \"php artisan queue:listen --tries=1 --timeout=0\" \"php artisan pail --timeout=0\" \"bun run dev -- --host 0.0.0.0\" \"php artisan schedule:work\" --names=server,queue,logs,vite,cron --kill-others"
],
"stripe": [
"Composer\\Config::disableProcessTimeout",
"stripe listen --forward-to http://127.0.0.1:8000/stripe/webhook"
],
"mail": [
"Composer\\Config::disableProcessTimeout",
"docker rm -f shoutrrr-mail; docker compose -f docker-compose.yml -f docker-compose.dev.yml up mailpit"
],
"lint": [
"pint --parallel"
],
"lint:check": [
"pint --parallel --test"
],
"ci:check": [
"Composer\\Config::disableProcessTimeout",
"bun run lint:check",
"bun run format:check",
"bun run types:check",
"@refactor:check",
"@test"
],
"types:check": [
"phpstan analyse --memory-limit=512M"
],
"refactor": [
"rector"
],
"refactor:check": [
"rector --dry-run"
],
"test": [
"@php artisan config:clear --ansi",
"@lint:check",
"@types:check",
"@php artisan test"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-update-cmd": [
"@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",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --graceful --ansi"
],
"pre-package-uninstall": [
"Illuminate\\Foundation\\ComposerScripts::prePackageUninstall"
]
},
"extra": {
"laravel": {
"dont-discover": [],
"installer": {
"post-create-project": [
]
}
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}