-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
53 lines (53 loc) · 1.22 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
{
"name": "spinen/connectwise-php-client",
"description": "SPINEN's PHP Client for ConnectWise.",
"keywords": [
"connectwise",
"client",
"spinen"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jimmy Puckett",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"laravel/framework": "^9.19|^10|^11",
"nesbot/carbon": "^2.62.1|^3"
},
"require-dev": {
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^9.5.8",
"psy/psysh": "^0.11",
"scrutinizer/ocular": "^1.9",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Spinen\\ConnectWise\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Spinen\\ConnectWise\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Spinen\\ConnectWise\\Laravel\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}