-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
55 lines (55 loc) · 1.26 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
{
"name": "spinen/halo-php-client",
"description": "SPINEN's PHP Client for Halo.",
"keywords": [
"halo",
"client",
"laravel",
"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"
},
"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\\Halo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Spinen\\Halo\\Providers\\ClientServiceProvider",
"Spinen\\Halo\\Providers\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}