-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
111 lines (111 loc) · 3.29 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
104
105
106
107
108
109
110
111
{
"name": "lukasss93/telegram-stickeroptimizer",
"description": "Optimize an image or sticker to a png file to make its size smaller than or equal to 350Kb, so that you will be able to add it to a sticker pack using the @stickers bot.",
"type": "project",
"keywords": [
"bot",
"telegram",
"laravel",
"nutgram",
"sticker",
"optimizer"
],
"license": "AGPL-3.0-only",
"require": {
"php": "^8.3",
"ext-gd": "*",
"ext-zip": "*",
"archtechx/enums": "^0.3.0",
"chillerlan/php-qrcode": "^4.3",
"guzzlehttp/guzzle": "^7.4",
"intervention/image": "^2.7",
"laravel/framework": "^11.0",
"laravel/tinker": "^2.7",
"league/flysystem-aws-s3-v3": "^3.0",
"lukasss93/laravel-model-settings": "^6.0",
"nutgram/laravel": "^1.0",
"pbmedia/laravel-ffmpeg": "^8.5",
"pe46dro/gd-text": "^1.2",
"sentry/sentry-laravel": "^4.0"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.0",
"fakerphp/faker": "^1.16",
"laravel/sail": "^1.0.1",
"lukasss93/laravel-larex": "^v4.0",
"lukasss93/laravel-larex-crowdin": "^v2.0",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^8.1",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"phpunit/phpunit": "^10.0",
"spatie/laravel-ignition": "^2.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"process-timeout": 0,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"ide-helper-meta": [
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta"
],
"ide-helper-models": [
"@php artisan ide-helper:models -W"
],
"migrate-fresh": [
"@php artisan migrate:fresh",
"@php artisan ide-helper:models -W"
],
"bot:run": [
"@php artisan nutgram:run"
],
"bot:commands": [
"@php artisan nutgram:register-commands"
],
"larex:export": [
"@php artisan larex:export"
],
"larex:export --watch": [
"@php artisan larex:export --watch"
],
"tests": [
"@php ./vendor/bin/pest --colors=always"
]
}
}