-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
137 lines (137 loc) · 3.69 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
134
135
136
137
{
"name": "corals/laraship",
"description": "Laraship is a Platform built on Laravel for Rapid Development, it helps Agents, Startups, and even individuals to save time building their Web Applications and websites using well-structured code.",
"keywords": [
"framework",
"laravel",
"dashboard",
"cms",
"admin-panel"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"anhskohbo/no-captcha": "^3.6",
"barryvdh/elfinder-flysystem-driver": "v0.5.0",
"barryvdh/laravel-dompdf": "^v2.2.0",
"codegreencreative/laravel-aweber": "^1.0",
"corals/charts": "dev-main",
"guzzlehttp/guzzle": "^7.9.1",
"guzzlehttp/psr7": "^2.7.0",
"hashids/hashids": "^5.0.2",
"intervention/image": "^3.7.2",
"laracasts/flash": "^3.2.3",
"laravel/framework": "^11.0",
"laravel/sanctum": "^4.0",
"laravel/slack-notification-channel": "^3.2.0",
"laravel/tinker": "^2.9",
"laravel/ui": "^4.5.2",
"league/flysystem-aws-s3-v3": "^3.28",
"league/fractal": "^0.20.1",
"madnest/madzipper": "^1.5",
"php-http/message": "^1.16",
"predis/predis": "v2.2.2",
"psr/http-factory": "^1.0",
"spatie/image-optimizer": "^1.7.5",
"spatie/laravel-activitylog": "^4.8.0",
"spatie/laravel-html": "^3.11.0",
"spatie/laravel-medialibrary": "^11.7.6",
"spatie/laravel-permission": "^6.9.0",
"spatie/pdf-to-image": "^3.0.0",
"stolz/assets": "0.2.0",
"symfony/http-foundation": "^7.1.1",
"symfony/process": "^7.1.1",
"wikimedia/composer-merge-plugin": "dev-master",
"yajra/laravel-auditable": "^11.0",
"yajra/laravel-datatables": "^11.x-dev"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.13.5",
"barryvdh/laravel-translation-manager": "dev-master",
"filp/whoops": "^2.15.4",
"fakerphp/faker": "^1.23.1",
"mockery/mockery": "^1.6.12",
"orangehill/iseed": "^v3.0.4",
"phpunit/phpunit": "^11.2.8"
},
"autoload": {
"classmap": [
"database/seeds",
"database/factories"
],
"files": [],
"psr-4": {
"App\\": "app/",
"Corals\\": "Corals/core",
"Corals\\Modules\\": "Corals/modules"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"dont-discover": [
]
},
"merge-plugin": {
"include": [
"Corals/modules/*/composer.json",
"Corals/core/*/composer.json"
],
"recurse": true,
"replace": false,
"ignore-duplicates": false,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
}
},
"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"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"wikimedia/composer-merge-plugin": true,
"php-http/discovery": true,
"eloquent/composer-npm-bridge": true
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/laraship/composer-merge-plugin"
},
{
"type": "vcs",
"url": "https://github.com/coralsio/laravel-translation-manager"
},
{
"type": "vcs",
"url": "https://github.com/coralsio/charts"
},
{
"type": "composer",
"url": "https://packages.laraship.com"
}
],
"minimum-stability": "stable"
}