forked from mauricecalhoun/inventory
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
56 lines (56 loc) · 1.32 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "dvicklund/inventory",
"description": "Inventory management using Laravel 8",
"keywords": ["laravel", "inventory", "inventory-management"],
"authors": [
{
"name": "Steve Bauman",
"email": "steven_bauman@outlook.com"
},
{
"name": "David Vicklund",
"email": "david@vicklund.com"
}
],
"license": "MIT",
"require": {
"php": ">=7.3.0",
"laravel/framework": "^9.6",
"gazsp/baum": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"mockery/mockery": "^1.0",
"fakerphp/faker": "^1.19",
"orchestra/testbench": "^7.3",
"brianium/paratest": "^6.4",
"nunomaduro/collision": "^6.1"
},
"archive": {
"exclude": ["/tests"]
},
"autoload": {
"psr-4": {
"Stevebauman\\Inventory\\": "src/"
}
},
"autoload-dev":
{
"psr-4": {
"Stevebauman\\Inventory\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"extra": {
"laravel": {
"providers": [
"Stevebauman\\Inventory\\InventoryServiceProvider"
]
}
}
}