-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.17 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
{
"name": "jcergolj/laravellte",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"require": {
"php": "*",
"doctrine/dbal": "^3.8",
"dyrynda/laravel-cascade-soft-deletes": "^4.4",
"guzzlehttp/guzzle": "^7.8",
"illuminate/console": "^10.0",
"illuminate/support": "^10.0",
"intervention/image": "^3.4",
"laravel/framework": "^10.0",
"laravel/ui": "^4.0",
"livewire/livewire": "^3.4",
"predis/predis": "^2.2"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.7",
"barryvdh/laravel-ide-helper": "^2.14",
"brianium/paratest": "^7.0",
"spatie/laravel-ignition": "^2.0",
"fakerphp/faker": "^1.23",
"jasonmccreary/laravel-test-assertions": "^2.2",
"jcergolj/laravel-view-test-assertions": "^2.8",
"laravel/tinker": "^2.9",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^7.0",
"phpunit/phpunit": "^10.0"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"dont-discover": [
"barryvdh/laravel-ide-helper"
]
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": ["app/helpers.php"]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": ["tests/helpers.php"]
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --tag=livewire:assets --ansi --force"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi"
]
}
}