-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
61 lines (61 loc) · 1.73 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
{
"name": "fleetbase/laravel-mysql-spatial",
"description": "MySQL spatial data types extension for Laravel x Fleetbase.",
"version": "1.0.2",
"scripts": {
"lint": "php-cs-fixer fix -v",
"test": "phpunit -c phpunit.xml.dist",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:types": "phpstan analyse --ansi --memory-limit=4G",
"test:unit": "phpunit -c phpunit.xml.dist --testsuite unit",
"test:integration": "phpunit -c phpunit.xml.dist --testsuite integration"
},
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Joseph Estefane",
"email": "[email protected]"
},
{
"name": "Fleetbase Pte Ltd",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-pdo": "*",
"ext-json": "*",
"doctrine/dbal": "^3.5",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0",
"geo-io/wkb-parser": "^1.0",
"jmikola/geojson": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0.15",
"laravel/laravel": "^10.0.4",
"laravel/browser-kit-testing": "^7.0",
"mockery/mockery": "^1.5",
"friendsofphp/php-cs-fixer": "^3.34.1",
"phpstan/phpstan": "^1.10.38"
},
"autoload": {
"psr-4": {
"Fleetbase\\LaravelMysqlSpatial\\": "src/"
}
},
"autoload-dev" : {
"classmap" : [
"tests/Unit",
"tests/Integration"
]
},
"extra": {
"laravel": {
"providers": [
"Fleetbase\\LaravelMysqlSpatial\\SpatialServiceProvider"
]
}
}
}