-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "mr-wolf-gb/traccar",
"description": "Traccar GPS server",
"keywords": [
"laravel",
"gps",
"traccar",
"api"
],
"homepage": "https://github.com/mr-wolf-gb/traccar",
"license": "MIT",
"support": {
"issues": "https://github.com/mr-wolf-gb/traccar/issues",
"source": "https://github.com/mr-wolf-gb/traccar"
},
"type": "library",
"authors": [
{
"name": "Mr.WOLF",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.8",
"guzzlehttp/promises": "^2.0"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "^1.0",
"laravel/prompts": "^0.1.15",
"orchestra/testbench": "^8.21",
"pestphp/pest": "^2.31",
"phpstan/phpstan": "^1.10.56",
"spatie/invade": "^2.0",
"spatie/ray": "^1.40.1",
"symfony/var-dumper": "^6.4"
},
"autoload": {
"psr-4": {
"MrWolfGb\\Traccar\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MrWolfGb\\Traccar\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"baseline": "vendor/bin/phpstan analyse --generate-baseline",
"test": "vendor/bin/pest --compact",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"MrWolfGb\\Traccar\\TraccarServiceProvider"
],
"aliases": {
"Traccar": "MrWolfGb\\Traccar\\TraccarFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}