-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
57 lines (57 loc) · 1.36 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
{
"name": "spinen/n-central-php-rest-client",
"description": "SPINEN's PHP REST Client for N-Able's N-Central.",
"keywords": [
"client",
"laravel",
"n-able",
"n-central",
"spinen"
],
"license": "MIT",
"authors": [
{
"name": "Jimmy Puckett",
"email": "jimmy.puckett@spinen.com"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.0",
"laravel/framework": "^9.19|^10|^11",
"nesbot/carbon": "^2.62.1|^3",
"spinen/laravel-version": "^1.5"
},
"require-dev": {
"laravel/pint": "^1.4",
"mockery/mockery": "^1.5.1",
"phpunit/phpunit": "^10",
"psy/psysh": "^0.11.1",
"scrutinizer/ocular": "^1.9",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Spinen\\Ncentral\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Spinen\\Ncentral\\Providers\\ClientServiceProvider",
"Spinen\\Ncentral\\Providers\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}