forked from electricjones/eloquent-meta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 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
{
"name": "briteweb/eloquent-meta",
"description": "Fork of: Attach meta data to Eloquent models",
"keywords": ["eloquent", "laravel", "meta"],
"homepage": "https://github.com/phoenix-labs/eloquent-meta",
"license": "MIT",
"authors": [
{
"name": "Michael Wilson",
"email": "phoenixlabsdev@gmail.com"
},
{
"name": "Boris Glumpler",
"email": "tech@scubaclick.com"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/support": ">= 5.6",
"nesbot/carbon": ">= 2.0",
"illuminate/database": ">= 5.6",
"illuminate/validation": ">= 5.6",
"illuminate/translation": ">= 5.6"
},
"require-dev": {
"phpunit/phpunit": "4.4.*",
"illuminate/console": ">= 5.6",
"illuminate/filesystem": ">= 5.6"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-4": {
"Phoenix\\EloquentMeta\\": "src/Phoenix/EloquentMeta/",
"Phoenix\\EloquentMeta\\Test\\": "tests/"
}
},
"minimum-stability": "dev"
}