forked from getcandy/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.42 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
{
"name": "getcandy/core",
"description": "GetCandy Laravel e-commerce core functionality.",
"keywords": ["getcandy", "laravel", "ecommerce", "e-commerce", "headless", "store", "shop", "cart"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "GetCandy",
"homepage": "https://getcandy.io/"
}
],
"autoload": {
"psr-4": {
"GetCandy\\": "src",
"GetCandy\\Database\\Factories\\": "database/factories",
"GetCandy\\Database\\Seeders\\": "database/seeders",
"GetCandy\\Database\\State\\": "database/state"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"GetCandy\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"GetCandy\\GetCandyServiceProvider"
]
}
},
"require": {
"php": "^8.0",
"laravel/framework": "^8.0|^9.0",
"spatie/laravel-medialibrary": "^9.0.0|^10.0.0",
"spatie/laravel-activitylog": "^4.4",
"laravel/scout": "^9.4",
"cartalyst/converter": "^6.1|^7.0",
"yab/laravel-scout-mysql-driver": "^5.0",
"kalnoy/nestedset": "^6.0",
"doctrine/dbal": "^3.3"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.5"
}
}