-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
118 lines (118 loc) · 3.79 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
112
113
114
115
116
117
118
{
"name": "ninshiki/backend",
"type": "project",
"description": "Inspiring Recognition: Celebrate Success",
"keywords": ["laravel", "framework", "ninshiki", "recognition"],
"license": "MIT",
"require": {
"php": "^8.3",
"bavix/laravel-wallet": "^11.2",
"bavix/laravel-wallet-uuid": "^3.0",
"bavix/laravel-wallet-warmup": "^3.0",
"calebporzio/sushi": "^2.5",
"cloudinary-labs/cloudinary-laravel": "^2.1",
"dedoc/scramble": "^0.11.11",
"doctrine/dbal": "^4.0",
"hammerstone/fast-paginate": "^1.1",
"laravel/framework": "^11.0",
"laravel/reverb": "^1.0",
"laravel/sanctum": "^4.0",
"laravel/socialite": "^5.14",
"laravel/tinker": "^2.9",
"mailersend/laravel-driver": "^2.5",
"mbezhanov/faker-provider-collection": "^2.0",
"mobiledetect/mobiledetectlib": "^4.8",
"ninshiki-project/ninshiki-event": "^1.0",
"overtrue/laravel-like": "^5.3",
"resend/resend-php": "^0.12.0",
"socialiteproviders/zoho": "^4.1",
"spatie/laravel-permission": "^6.7",
"wildside/userstamps": "^2.4"
},
"require-dev": {
"enlightn/enlightn": "^2.10",
"fakerphp/faker": "^1.23",
"larastan/larastan": "^2.9",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"mbezhanov/laravel-faker-provider-collection": "^3.1",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"pestphp/pest": "^2.35",
"pestphp/pest-plugin-faker": "^2.0",
"pestphp/pest-plugin-laravel": "^2.4",
"spatie/laravel-ignition": "^2.4"
},
"autoload": {
"psr-4": {
"App\\": "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"
],
"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"
],
"analyse": [
"./vendor/bin/phpstan analyse --memory-limit=2G"
],
"test": [
"@php artisan test --bail"
],
"test-coverage": [
"./vendor/bin/pest --coverage --bail"
],
"format": [
"./vendor/bin/pint"
],
"scan": [
"@php artisan enlightn"
],
"reverb": [
"@php artisan reverb:start --hostname=ninshiki-backend.test --port=8080"
],
"mailpit": [
".bin/mailpit"
]
},
"scripts-descriptions": {
"analyse": "Run PHPStan static analysis against your application.",
"test": "Run Pestphp testing tool",
"format": "Run Laravel Pint for fixing code style"
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}