-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
47 lines (47 loc) · 1.04 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
{
"name": "byte5digital/laravel-harvest",
"description": "A Laravel wrapper for the Harvest API.",
"type": "package",
"license": "MIT",
"keywords": [
"getharvest",
"harvest",
"laravel"
],
"authors": [
{
"name": "Krishan König",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "5.6.*",
"kitetail/zttp": "^0.3.0"
},
"autoload": {
"psr-4": {
"Byte5\\LaravelHarvest\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Byte5\\LaravelHarvest\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Byte5\\LaravelHarvest\\LaravelHarvestServiceProvider"
],
"aliases": {
"Harvest": "Byte5\\LaravelHarvest\\Harvest"
}
}
},
"require-dev": {
"orchestra/testbench": "^3.6"
}
}