forked from johnnyfreeman/laravel-custom-relation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 786 Bytes
/
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
{
"name": "johnnyfreeman/laravel-custom-relation",
"type": "library",
"description": "A custom relation for when stock relations aren't enough.",
"keywords": ["laravel","eloquent", "relation", "relationship"],
"homepage": "https://github.com/johnnyfreeman/laravel-custom-relation",
"license": "MIT",
"authors": [
{
"name": "Johnny Freeman",
"email": "[email protected]",
"homepage": "http://github.com/johnnyfreeman",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"LaravelCustomRelation\\": "src/"
}
},
"require": {
"php": ">=5.6.4",
"laravel/framework": "^5.2.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/johnnyfreeman/laravel-custom-relation.git"
}
]
}