forked from egeriis/eloquent-model-future
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 837 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
{
"name": "dixie/eloquent-model-future",
"description": "A package that lets you plan future changes to a model.",
"type": "library",
"license": "GNU GPLv3",
"authors": [
{
"name": "jstoone",
"email": "[email protected]"
}
],
"require": {
"php": "^5.6|^7.0|^7.1",
"laravel/framework": "5.2.*|5.3.*|5.4.*|5.5.*",
"mockery/mockery": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.6",
"orchestra/testbench": "^3.4",
"orchestra/database": "3.4.x-dev"
},
"autoload": {
"psr-4": {
"Dixie\\EloquentModelFuture\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dixie\\EloquentModelFuture\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}