-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
124 lines (124 loc) · 3.91 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
{
"name": "laravel/laravel",
"type": "project",
"description": "The Laravel Framework.",
"keywords": [
"framework",
"laravel"
],
"license": "MIT",
"repositories": {
"laravel-dashboard-installer": {
"type": "path",
"url": "packages/mobidonia/laravel-dashboard-installer",
"options": {
"symlink": true
}
},
"laravel-selfupdater": {
"type": "path",
"url": "packages/codedge/laravel-selfupdater",
"options": {
"symlink": true
}
},
"laravel-translation": {
"type": "path",
"url": "packages/joedixon/laravel-translation",
"options": {
"symlink": true
}
}
},
"require": {
"php": "^7.3|^8.0",
"akaunting/module": "^2.0",
"akaunting/money": "^1.1",
"biscolab/laravel-recaptcha": "^5.0",
"cmixin/business-time": "^1.11",
"codedge/laravel-selfupdater": "@dev",
"darryldecode/cart": "~4.0",
"doctrine/dbal": "^2.11",
"fideloper/proxy": "^4.4",
"fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1",
"intervention/image": "^2.5",
"joedixon/laravel-translation": "@dev",
"kkomelin/laravel-translatable-string-exporter": "^1.10",
"laravel-frontend-presets/argon": "^1.0",
"laravel-notification-channels/onesignal": "^2.3",
"laravel-notification-channels/twilio": "^3.1",
"laravel/cashier": "^12.4",
"laravel/cashier-mollie": "1.14.1",
"laravel/framework": "^8.22",
"laravel/socialite": "^5.0",
"laravel/tinker": "^2.5",
"laravel/ui": "^3.0",
"maatwebsite/excel": "^3.1",
"mckenziearts/laravel-notify": "^2.1",
"mobidonia/laravel-dashboard-installer": "@dev",
"mollie/laravel-mollie": "^2.0",
"onecentlin/laravel-adminer": "^4.7",
"paypal/rest-api-sdk-php": "^1.14",
"pusher/pusher-php-server": "^4.1",
"silviolleite/laravelpwa": "^2.0",
"spatie/eloquent-sortable": "^3.11",
"spatie/geocoder": "^3.9",
"spatie/laravel-cookie-consent": "^2.12",
"spatie/laravel-googletagmanager": "^2.6",
"spatie/laravel-permission": "^3.18",
"spatie/laravel-sitemap": "^5.8",
"spatie/laravel-translatable": "^4.6",
"spatie/opening-hours": "^2.10",
"stripe/stripe-php": "^7.60",
"twilio/sdk": "^6.11",
"unicodeveloper/laravel-paystack": "^1.0",
"willvincent/laravel-rateable": "2.3.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.5",
"facade/ignition": "^2.5",
"fakerphp/faker": "^1.9.1",
"laravel/sail": "^1.1",
"mockery/mockery": "^1.4.2",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^9.3.3"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"dont-discover": []
}
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/",
"Modules\\": "modules/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"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"
]
}
}