-
Notifications
You must be signed in to change notification settings - Fork 62
/
composer.json
56 lines (56 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
{
"name": "spinen/laravel-quickbooks-client",
"description": "SPINEN's Laravel Client for QuickBooks.",
"keywords": [
"quickbooks",
"client",
"laravel",
"spinen"
],
"license": "MIT",
"authors": [
{
"name": "Jimmy Puckett",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0.2",
"illuminate/database": "^9.19",
"illuminate/http": "^9.19",
"illuminate/routing": "^9.19",
"illuminate/support": "^9.19",
"nesbot/carbon": "^2.62.1",
"quickbooks/v3-php-sdk": "^5.4.6"
},
"require-dev": {
"laravel/pint": "^1.2",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^9.5.8",
"psy/psysh": "^0.11",
"scrutinizer/ocular": "^1.9"
},
"autoload": {
"psr-4": {
"Spinen\\QuickBooks\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spinen\\QuickBooks\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Spinen\\QuickBooks\\Providers\\ServiceProvider",
"Spinen\\QuickBooks\\Providers\\ClientServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}