This repository has been archived by the owner on May 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
94 lines (94 loc) · 2.87 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/spiral/roadrunner-tcp"
}
],
"require": {
"php": "^8.0",
"cycle/annotated": "^3.0",
"cycle/orm": "^2.0",
"cycle/schema-migrations-generator": "^2.0",
"cycle/schema-renderer": "^1.0",
"eventsauce/eventsauce": "^1.2",
"spatie/laravel-ignition": "^1.0",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"inertiajs/inertia-laravel": "^0.6",
"laravel/framework": "^9.0",
"laravel/jetstream": "^2.3",
"laravel/sanctum": "^2.6",
"laravel/tinker": "^2.5",
"nunomaduro/termwind": "^1.0",
"php-http/message": "^1.11",
"spatie/laravel-route-attributes": "^1.9",
"spiral/roadrunner-broadcast": "^2.0",
"spiral/roadrunner-cli": "^2.0",
"spiral/roadrunner-jobs": "^2.0",
"spiral/roadrunner-kv": "^2.1",
"spiral/roadrunner-laravel": "^5.2",
"spiral/roadrunner-tcp": "^2.0",
"symfony/messenger": "^5.3",
"tightenco/ziggy": "^1.0",
"zbateson/mail-mime-parser": "^2.0"
},
"require-dev": {
"fakerphp/faker": "^1.9.1",
"laravel/sail": "^1.0.1",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.3.3",
"rector/rector": "^0.12.4"
},
"autoload": {
"psr-4": {
"App\\": "app/Application",
"Interfaces\\": "app/Interfaces",
"Infrastructure\\": "app/Infrastructure",
"Modules\\": "app/Modules",
"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"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
]
},
"extra": {
"laravel": {
"dont-discover": [
"spatie/laravel-route-attributes",
"laravel/jetstream"
]
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}