-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcomposer.json
More file actions
111 lines (111 loc) · 3.52 KB
/
composer.json
File metadata and controls
111 lines (111 loc) · 3.52 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "fleetbase/core-api",
"version": "1.6.41",
"description": "Core Framework and Resources for Fleetbase API",
"keywords": [
"fleetbase",
"logistics platform"
],
"license": "AGPL-3.0-or-later",
"authors": [
{
"name": "Fleetbase Pte Ltd.",
"email": "hello@fleetbase.io"
},
{
"name": "Ronald A. Richardson",
"email": "ron@fleetbase.io"
}
],
"require": {
"php": "^8.0",
"aws/aws-sdk-php-laravel": "^3.7",
"fleetbase/countries": "^0.8.3",
"fleetbase/laravel-mysql-spatial": "^1.0.2",
"fleetbase/twilio": "^5.0.1",
"giggsey/libphonenumber-for-php": "^8.13",
"google/apiclient": "^2.18",
"guzzlehttp/guzzle": "^7.4",
"hammerstone/fast-paginate": "^1.0",
"illuminate/broadcasting": "^9.0|^10.0",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0",
"illuminate/http": "^9.0|^10.0",
"illuminate/notifications": "^9.0|^10.0",
"illuminate/routing": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"inkrot/php-compress-json": "^0.1.1",
"innoge/laravel-msgraph-mail": "^1.4",
"intervention/image": "^3.11",
"jdorn/sql-formatter": "^1.2",
"laravel-notification-channels/apn": "^5.0",
"laravel-notification-channels/fcm": "^4.1",
"laravel-notification-channels/twilio": "^3.3",
"laravel/sanctum": "3.2.4",
"lcobucci/clock": "3.3.1",
"lcobucci/jwt": "^5.4",
"maatwebsite/excel": "^3.1",
"phpoffice/phpspreadsheet": "^1.28",
"phrity/websocket": "^1.7",
"sentry/sentry-laravel": "*",
"spatie/laravel-activitylog": "^4.7",
"spatie/laravel-google-cloud-storage": "^2.2",
"spatie/laravel-permission": "^6.3",
"spatie/laravel-responsecache": "^7.5",
"spatie/laravel-schedule-monitor": "^3.7",
"spatie/laravel-sluggable": "^3.5",
"sqids/sqids": "^0.4.1",
"xantios/mimey": "^2.2.0",
"spatie/laravel-pdf": "^1.9",
"mossadal/math-parser": "^1.3",
"rlanvin/php-rrule": "^2.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.34.1",
"nunomaduro/collision": "^7.0",
"pestphp/pest": "^2.33.2",
"phpstan/phpstan": "^1.10.38",
"symfony/var-dumper": "^5.4.29"
},
"autoload": {
"psr-4": {
"Fleetbase\\": "src/",
"Fleetbase\\Seeders\\": "seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Fleetbase\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Fleetbase\\Providers\\CoreServiceProvider",
"Fleetbase\\Providers\\EventServiceProvider",
"Fleetbase\\Providers\\SocketClusterServiceProvider"
]
}
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true
}
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:types": "phpstan analyse --ansi --memory-limit=0",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}