-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
36 lines (36 loc) · 933 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
32
33
34
35
36
{
"name": "phoenix/eloquent-meta",
"description": "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": "[email protected]"
},
{
"name": "Boris Glumpler",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/database": "5.4.*|5.5.*|5.6.*|5.7.*|5.8.*"
},
"require-dev": {
"phpunit/phpunit": "4.4.*"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-4": {
"Phoenix\\EloquentMeta\\": "src/Phoenix/EloquentMeta/"
}
},
"autoload-dev": {
"Phoenix\\EloquentMeta\\Test\\": "tests/"
},
"minimum-stability": "dev"
}