-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (50 loc) · 1.27 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
{
"name": "nthmedia/laravel-stockbase",
"description": "Stockbase integration for Laravel",
"license": "proprietary",
"authors": [
{
"name": "Niek ten Hoopen",
"email": "[email protected]"
}
],
"autoload": {
"psr-4" : {
"Nthmedia\\Stockbase\\": "src/"
}
},
"autoload-dev": {
"psr-4" : {
"Nthmedia\\Stockbase\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4|^8.0",
"dividebv/phpdivideiq": "dev-master",
"webmozart/assert": "^1.9",
"spatie/data-transfer-object": "^2.2",
"nthmedia/transform-to-array": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^9.2",
"orchestra/testbench": "^5.3",
"symplify/easy-coding-standard": "^8.1",
"nunomaduro/larastan": "^0.6.1"
},
"extra": {
"laravel": {
"providers": [
"Nthmedia\\Stockbase\\StockbaseServiceProvider"
],
"aliases": {
"Stockbase": "Nthmedia\\Stockbase\\Facades\\Stockbase"
}
}
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:nthmedia/PHPDivideIQ.git"
}
]
}