-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
133 lines (133 loc) · 4.25 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/coding-sunshine/laravel-faker-provider-collection"
},
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"require": {
"php": "^7.4",
"algolia/scout-extended": "^1.9",
"appstract/laravel-blade-directives": "^1.8",
"arcanedev/laravel-notes": "^7.0",
"binaryk/laravel-restify": "^3.5",
"binarytorch/larecipe": "^2.3",
"calebporzio/parental": "^0.10.0",
"calebporzio/sushi": "^2.0",
"darkghosthunter/laraguard": "^1.4",
"darkghosthunter/laraload": "^2.0",
"doctrine/dbal": "^2.10",
"fideloper/proxy": "^4.2",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^6.3",
"iatstuti/laravel-cascade-soft-deletes": "^3.0",
"kalnoy/nestedset": "^5.0",
"lab404/laravel-impersonate": "^1.6",
"laravel/framework": "^7.0",
"laravel/nova": "~3.0",
"laravel/sanctum": "^2.3",
"laravel/scout": "^8.0",
"laravel/socialite": "^4.3",
"laravel/telescope": "^3.2",
"laravel/tinker": "^2.0",
"larsjanssen6/underconstruction": "^6.1",
"livewire/livewire": "^1.0",
"maatwebsite/excel": "^3.1",
"mantas-done/laravel-apm": "^1.0",
"mcamara/laravel-localization": "^1.5",
"rappasoft/laravel-livewire-tables": "^0.1.5",
"robertogallea/eloquent-api": "^1.1",
"sentry/sentry-laravel": "^1.7",
"spatie/eloquent-sortable": "^3.8",
"spatie/image": "^1.7",
"spatie/laravel-activitylog": "^3.14",
"spatie/laravel-medialibrary": "^8.1",
"spatie/laravel-permission": "^3.11",
"spatie/laravel-schemaless-attributes": "^1.7",
"sqits/laravel-userstamps": "^0.0.7",
"teamtnt/laravel-scout-tntsearch-driver": "^8.3",
"tightenco/ziggy": "^0.9.0",
"vinkla/hashids": "^8.1",
"watson/active": "^5.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.2",
"beyondcode/laravel-query-detector": "^1.2",
"beyondcode/tinkerwell-helper": "^1.1",
"facade/ignition": "^2.0",
"fidum/laravel-blueprint-pestphp-addon": "^0.2.0",
"fruitcake/laravel-telescope-toolbar": "^1.2",
"fzaninotto/faker": "^1.9.1",
"jeroen-g/laravel-packager": "^2.5",
"laravel-shift/blueprint": "^1.5",
"laravel/ui": "^2.0",
"mbezhanov/laravel-faker-provider-collection": "dev-master",
"mockery/mockery": "^1.3.1",
"mtolhuys/laravel-schematics": "^0.10.3",
"naoray/blueprint-nova-addon": "^1.2",
"nunomaduro/collision": "^5.0",
"nunomaduro/larastan": "^0.5.5",
"nunomaduro/phpinsights": "^1.14",
"pestphp/pest": "^0.1.5",
"phpunit/phpunit": "^9.0",
"spatie/pest-plugin-snapshots": "dev-master",
"vemcogroup/laravel-translation": "^2.0",
"wnx/laravel-stats": "^2.2"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"classmap": [
"database/seeds",
"database/factories"
],
"files": [
"app/Helpers/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"app/helpers.php"
]
},
"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"
]
}
}