This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 69
/
composer.json
67 lines (67 loc) · 1.76 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
{
"name": "mckenziearts/shopper",
"description": "E-commerce administration made with Laravel 5 to create and manage online shop",
"license": "MIT",
"authors": [
{
"name": "Arthur Monney",
"email": "[email protected]",
"homepage": "https://twitter.com/MonneyArthur"
}
],
"homepage": "https://github.com/mckenziearts/shopper",
"keywords": ["Laravel", "Shopper", "e-commerce"],
"require": {
"algolia/scout-extended": "^1.3",
"illuminate/support": "~5",
"cartalyst/sentinel": "2.0.*",
"cyrildewit/eloquent-viewable": "^3.0",
"composer/semver": "^1.4",
"danielme85/laravel-cconverter": "^0.2.1",
"ext-zip": "*",
"ext-json": "*",
"facebook/graph-sdk": "^5.6.1",
"intervention/image": "^2.4",
"intervention/imagecache": "^2.3",
"knplabs/packagist-api": "^1.5",
"laravel/scout": "^7.1",
"league/fractal": "^0.17.0",
"mcamara/laravel-localization": "^1.3",
"moneyphp/money": "^3.2",
"spatie/ssl-certificate": "^1.13",
"thomaswelton/laravel-gravatar": "^1.1",
"thujohn/twitter": "^2.2",
"tightenco/ziggy": "^0.6.9",
"watson/active": "3.0.0",
"doctrine/dbal": "^2.9"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3.0",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"files": [
"src/Helpers/helpers.php"
],
"psr-4": {
"Mckenziearts\\Shopper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mckenziearts\\Shopper\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Mckenziearts\\Shopper\\ShopperServiceProvider"
],
"aliases": {
"Shopper": "Mckenziearts\\Shopper\\Facades\\Shopper"
}
}
}
}