-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
59 lines (59 loc) · 1.17 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
57
58
59
{
"name": "a-lawrence/laravel-wonde",
"description": "This is a bridge package for the Wonde API Client.",
"keywords": [
"laravel",
"framework",
"wonde",
"wonde ltd",
"wondeltd",
"laravel-wonde",
"wonde laravel",
"anthony lawrence",
"alawrence",
"anthonylawrence"
],
"license": "MIT",
"authors": [
{
"name": "Anthony Lawrence",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"illuminate/contracts": "5.5.*",
"illuminate/support": "5.5.*",
"graham-campbell/manager": "^3.0",
"wondeltd/php-client": "1.4.*"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^6.1",
"graham-campbell/testbench": "^4.0"
},
"suggest": {
},
"autoload": {
"psr-4": {
"ALawrence\\LaravelWonde\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ALawrence\\Tests\\LaravelWonde\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"laravel": {
"providers": [
"ALawrence\\LaravelWonde\\WondeServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}