forked from shopperlabs/shopper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
113 lines (113 loc) · 3.09 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
{
"name": "abdelhamiderrahmouni/shopper-framework",
"description": "A fork of shopperlabs/shopper: An eCommerce administration built with Laravel for create and manage online shop.",
"keywords": [
"laravel",
"livewire components",
"admin",
"shopper",
"e-commerce"
],
"license": "MIT",
"authors": [
{
"name": "Arthur Monney",
"email": "monneylobe@gmail.com",
"homepage": "https://twitter.com/MonneyArthur",
"role": "Developer"
},
{
"name": "Abdelhamid Errahmouni",
"email": "abdelhamid.errahmouni@gmail.com",
"homepage": "https://github.com/abdelhamiderrahmouni",
"role": "Developer"
}
],
"require": {
"php": "^8.1|^8.2",
"ext-intl": "*",
"ext-json": "*",
"bacon/bacon-qr-code": "^2.0",
"blade-ui-kit/blade-heroicons": "^1.2",
"doctrine/dbal": "^3.0",
"filament/forms": "^2.17",
"filament/notifications": "^2.17",
"illuminate/contracts": "^8.6|^9.0",
"illuminate/database": "^8.0|^9.0",
"illuminate/routing": "^8.6|^9.0",
"illuminate/support": "^8.0|^9.0",
"illuminate/validation": "^8.0|^9.0",
"jenssegers/agent": "^2.6",
"laravel/helpers": "^1.4.1",
"laravel/ui": "^3.2",
"league/omnipay": "^3",
"livewire/livewire": "^2.10",
"maatwebsite/excel": "^3.1",
"maatwebsite/laravel-sidebar": "^2.5",
"milon/barcode": "^9.0.0",
"moneyphp/money": "^3.3",
"omnipay/paypal": "^3.0",
"pragmarx/google2fa": "^8.0",
"psr/simple-cache": "~2.0",
"rappasoft/laravel-livewire-tables": "^2.12",
"spatie/laravel-medialibrary": "^10.4.1",
"spatie/laravel-package-tools": "^1.11",
"spatie/laravel-permission": "^5.5.2",
"staudenmeir/laravel-adjacency-list": "^1.0",
"stevebauman/location": "^6.3.1",
"stripe/stripe-php": "^8.6",
"wire-elements/modal": "^1.0.0",
"wireui/wireui": "^1.17.9"
},
"require-dev": {
"laravel/pint": "^1.1",
"mockery/mockery": "^1.4",
"nunomaduro/collision": "^5.11|^6.1",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^6.0|^7.0",
"pestphp/pest": "^1.21",
"phpunit/phpunit": "^8.4|^9.0",
"rector/rector": "^0.18.6",
"reecem/mocker": "^1.2"
},
"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": {
"stan": "./vendor/bin/phpstan analyse",
"baseline": "./vendor/bin/phpstan analyse --generate-baseline",
"pint": "./vendor/bin/pint",
"pest": "./vendor/bin/pest"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true,
"php-http/discovery": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}