forked from laravel-enso/products
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.23 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
{
"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"
}
],
"require": {
"php": ">=7.1.2",
"laravel-enso/core": "4.4.*",
"laravel-enso/dynamic-methods": "1.0.*",
"laravel-enso/enums": "1.1.*",
"laravel-enso/forms": "3.2.*",
"laravel-enso/helpers": "1.12.*",
"laravel-enso/migrator": "1.0.*",
"laravel-enso/tables": "2.2.*"
},
"autoload": {
"psr-4": {
"LaravelEnso\\Products\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"LaravelEnso\\Products\\AppServiceProvider",
"LaravelEnso\\Products\\CompanyServiceProvider",
"LaravelEnso\\Products\\EnumServiceProvider"
]
}
}
}