This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
57 lines (57 loc) · 1.72 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
{
"name": "laravel-enso/products",
"description": "Product manager for Laravel Enso",
"keywords": [
"laravel-enso",
"laravel",
"products",
"product-management"
],
"homepage": "https://github.com/laravel-enso/products",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ionut-Catalin Sandu",
"email": "[email protected]",
"homepage": "https://laravel-enso.com",
"role": "Developer"
},
{
"name": "Adrian Ocneanu",
"email": "[email protected]",
"homepage": "https://laravel-enso.com",
"role": "Developer"
}
],
"require": {
"laravel-enso/categories": "^2.0",
"laravel-enso/comments": "^4.0",
"laravel-enso/core": "^7.0",
"laravel-enso/data-import": "^5.0",
"laravel-enso/documents": "^4.0",
"laravel-enso/dynamic-methods": "^2.0",
"laravel-enso/enums": "^2.0",
"laravel-enso/forms": "^4.0",
"laravel-enso/helpers": "^2.0",
"laravel-enso/measurement-units": "^2.0",
"laravel-enso/migrator": "^2.0",
"laravel-enso/packaging-units": "^1.0",
"laravel-enso/tables": "^4.0"
},
"autoload": {
"psr-4": {
"LaravelEnso\\Products\\": "src/",
"LaravelEnso\\Products\\Database\\Factories\\": "database/factories/"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelEnso\\Products\\AppServiceProvider",
"LaravelEnso\\Products\\CompanyServiceProvider",
"LaravelEnso\\Products\\CategoryServiceProvider"
]
}
}
}