forked from rinvex/laravel-attributes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 2.66 KB
/
composer.json
File metadata and controls
92 lines (92 loc) · 2.66 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "rinvex/attributable",
"description": "Rinvex Attributable is a robust, intelligent, and integrated Entity-Attribute-Value model (EAV) implementation for Laravel Eloquent, with powerful underlying for managing entity attributes implicitly as relations with ease. It utilizes the power of Laravel Eloquent, with smooth and seamless integration.",
"keywords": [
"eav",
"eloquent",
"laravel",
"dynamic",
"robust",
"schema",
"model",
"value",
"entity",
"database",
"attribute",
"integrated",
"intelligent",
"entity-attribute-value"
],
"license": "MIT",
"homepage": "https://rinvex.com",
"support": {
"email": "help@rinvex.com",
"issues": "https://github.com/rinvex/attributable/issues",
"source": "https://github.com/rinvex/attributable",
"docs": "https://github.com/rinvex/attributable/blob/master/README.md"
},
"authors": [
{
"name": "Rinvex LLC",
"homepage": "https://rinvex.com",
"email": "help@rinvex.com"
},
{
"name": "Abdelrahman Omran",
"homepage": "https://omranic.com",
"email": "me@omranic.com",
"role": "Project Lead"
},
{
"name": "Israel Ortuño",
"email": "israel@devio.es"
},
{
"name": "The Generous Laravel Community",
"homepage": "https://github.com/rinvex/attributable/contributors"
}
],
"require": {
"php": "^7.0.0",
"illuminate/support": "~5.4.0|~5.5.0",
"illuminate/database": "~5.4.0|~5.5.0",
"spatie/laravel-sluggable": "^1.3.0",
"spatie/eloquent-sortable": "^3.0.0",
"spatie/laravel-translatable": "^1.1.0",
"jeremeamia/superclosure": "^2.3.0",
"rinvex/cacheable": "dev-develop",
"watson/validating": "^3.0.1"
},
"require-dev": {
"phpunit/phpunit": "^6.0.0",
"illuminate/container": "~5.4.0|~5.5.0"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"Rinvex\\Attributable\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Rinvex\\Attributable\\Providers\\AttributableServiceProvider"
]
}
}
}