forked from shopperlabs/shopper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
91 lines (91 loc) · 2.27 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
{
"name": "shopper/framework",
"description": "An eCommerce administration built with Laravel for create and manage online shop.",
"keywords": [
"laravel",
"admin",
"shopper",
"e-commerce"
],
"license": "MIT",
"authors": [
{
"name": "Arthur Monney",
"email": "arthur@shopperlabs.io",
"homepage": "https://twitter.com/MonneyArthur",
"role": "Developer"
},
{
"name": "Jean-Vincent QUILICHINI",
"email": "jeanvincent@shopperlabs.io",
"homepage": "https://twitter.com/jvq_txt",
"role": "Developer"
}
],
"require": {
"php": "^8",
"ext-intl": "*",
"ext-json": "*",
"askedio/laravel-soft-cascade": "^8.1",
"bacon/bacon-qr-code": "^2.0",
"blade-ui-kit/blade-heroicons": "^1.2",
"doctrine/dbal": "^3.0",
"illuminate/support": "^8.0",
"jenssegers/agent": "^2.6",
"laravel/cashier": "^12.10",
"laravel/helpers": "^1.4.1",
"laravel/ui": "^3.2",
"lavary/laravel-menu": "^1.8.3",
"livewire-ui/modal": "^1.0.0",
"livewire/livewire": "^2.5",
"maatwebsite/excel": "^3.1",
"maatwebsite/laravel-sidebar": "^2.4",
"milon/barcode": "^8.0.1",
"moneyphp/money": "^3.3",
"pragmarx/google2fa": "^7.0|^8.0",
"reecem/mocker": "1.1.*",
"spatie/laravel-analytics": "^3.11",
"spatie/laravel-medialibrary": "^9.0.0",
"spatie/laravel-permission": "^3.2",
"stevebauman/location": "^5.2"
},
"require-dev": {
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^5.0|^6.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"files": [
"src/Helpers/helpers.php"
],
"psr-4": {
"Shopper\\Framework\\": "src/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Shopper\\Framework\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Shopper\\Framework\\FrameworkServiceProvider"
],
"aliases": {
"Shopper": "Shopper\\Framework\\Facades\\Shopper"
}
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}