-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1014 Bytes
/
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
{
"name": "shopper/starter-kits",
"description": "Minimum scaffolding starter kit for Shopper e-commerce",
"keywords": ["laravel", "shopper", "e-commerce", "livewire", "inertiajs", "vue", "react"],
"license": "MIT",
"authors": [
{
"name": "Arthur Monney",
"email": "arthur@laravelshopper.dev"
}
],
"require": {
"php": "^8.2",
"illuminate/console": "^11.0",
"illuminate/filesystem": "^11.0",
"illuminate/support": "^11.0",
"illuminate/validation": "^11.0",
"shopper/framework": "^2.0",
"symfony/console": "^7.0"
},
"require-dev": {
"laravel/framework": "^11.0",
"orchestra/testbench-core": "^9.0",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"Shopper\\StarterKit\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Shopper\\StarterKit\\StarterKitServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}