forked from Mobi-Market/dpd-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.05 KB
/
Copy pathcomposer.json
File metadata and controls
41 lines (41 loc) · 1.05 KB
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
{
"name": "mobi-market/dpd-integration",
"type": "library",
"description": "DPD integration laravel package",
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15@dev",
"illuminate/support": "~5.5.0"
},
"license": "proprietary",
"authors": [
{
"name": "Callum Slaney-Flett",
"email": "callum@mobi-market.co.uk"
},
{
"name": "Scott-David Jones",
"email": "scott.jones@autumndev.co.uk"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"MobiMarket\\DpdShipping\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"MobiMarket\\DpdShipping\\DpdServiceProvider"
],
"aliases": {
"DpdGlobal": "MobiMarket\\DpdShipping\\DpdGloalFacade",
"DpdLocal": "MobiMarket\\DpdShipping\\DpdLocalFacade"
}
}
}
}