-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
119 lines (119 loc) · 3.12 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
119
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.2",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-memcached": "*",
"ext-mongodb": "*",
"aws/aws-php-sns-message-validator": "^1.0",
"aws/aws-sdk-php": "~3.0",
"czim/file-handling": "dev-load-count-fix as 2.3.0",
"czim/laravel-paperclip": "^5.0",
"graham-campbell/markdown": "^15.0",
"laracasts/utilities": "^3.2",
"laravel/framework": "^11.0",
"laravel/nova": "^4.0",
"laravel/pint": "^1.18",
"laravel/reverb": "^1.0",
"laravel/sanctum": "^v4.0.0",
"laravel/tinker": "^2.5",
"laravel/ui": "^4.0",
"league/csv": "^9.6",
"league/flysystem-aws-s3-v3": "^3.0",
"league/fractal": "^0.20",
"league/oauth2-client": "^2.6",
"mongodb/laravel-mongodb": "^5.0",
"neitanod/forceutf8": "~2.0",
"outl1ne/nova-sortable": "^3.4",
"pda/pheanstalk": "^6.0",
"pusher/pusher-php-server": "^7.0",
"ramsey/uuid": "^4.1",
"spatie/eloquent-sortable": "^4.0",
"spiritix/lada-cache": "^5.1",
"tio/laravel": "^1.10"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.5",
"barryvdh/laravel-ide-helper": "^v3.0.0",
"deployer/deployer": "^7.4",
"fakerphp/faker": "^1.9.1",
"kitloong/laravel-migrations-generator": "^v7.0.1",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^v8.1.1",
"pestphp/pest": "^v3.0",
"pestphp/pest-plugin-faker": "^3.0",
"pestphp/pest-plugin-laravel": "^3.0",
"phpunit/phpunit": "^11.0",
"spatie/laravel-ignition": "^2.0"
},
"repositories": {
"nova": {
"type": "composer",
"url": "https://nova.laravel.com"
},
"file-handling": {
"type": "github",
"url": "https://github.com/rbruhn/file-handling.git"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/Helpers/count_helper.php",
"app/Helpers/date_helper.php",
"app/Helpers/general_helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"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"
],
"post-update-cmd": [
"Illuminate\\Foundation\\ComposerScripts::postUpdate",
"@php artisan nova:publish"
],
"dev-post-update-cmd": [
"@php artisan ide-helper:generate",
"@php artisan ide-helper:meta"
]
}
}