-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
49 lines (49 loc) · 1.11 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
{
"name": "devio/eavquent",
"description": "EAV modeling package for Eloquent and Laravel.",
"keywords": [
"eav", "eloquent", "laravel", "dynamic", "schema", "database"
],
"license": "MIT",
"authors": [
{
"name": "Israel Ortuño",
"email": "israel@devio.es"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "~5.1",
"illuminate/database": "~5.1",
"illuminate/validation": "~5.1",
"illuminate/config": "~5.1"
},
"require-dev": {
"phpspec/phpspec": "^2.4",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "^0.9.4",
"fzaninotto/faker": "~1.4",
"orchestra/testbench": "~3.1"
},
"autoload": {
"files": [
"src/helpers.php"
],
"classmap": [
"migrations"
],
"psr-4": {
"Devio\\Eavquent\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}