forked from mauricecalhoun/inventory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 895 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
37
{
"name": "stevebauman/inventory",
"description": "Inventory management using Laravel 4 / 5",
"keywords": ["laravel", "inventory", "inventory-management"],
"authors": [
{
"name": "Steve Bauman",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"illuminate/database": "4.* | 5.*",
"illuminate/support": "4.* | 5.*",
"baum/baum": "1.0.* | 1.1.*"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"mockery/mockery": "0.9.*"
},
"archive": {
"exclude": ["/tests"]
},
"autoload": {
"psr-4": {
"Stevebauman\\Inventory\\": "src/"
}
},
"autoload-dev":
{
"psr-4": {
"Stevebauman\\Inventory\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}