Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 46 additions & 46 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
{
"name": "mstaack/laravel-postgis",
"description": "Postgis extensions for laravel. Aims to make it easy to work with geometries from laravel models",
"require": {
"php": ">=7.1",
"illuminate/database": "^6.0|^7.0|^8.0|^9.0",
"geo-io/wkb-parser": "^1.0",
"jmikola/geojson": "^1.0",
"bosnadev/database": "^0.21|master"
},
"require-dev": {
"illuminate/pagination": "^6.0|^7.0|^8.0|^9.0",
"phpunit/phpunit": ">=8.5.23",
"mockery/mockery": "^1.3"
},
"autoload": {
"psr-4": {
"MStaack\\LaravelPostgis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MStaack\\LaravelPostgis\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Peter Haza",
"email": "[email protected]"
"name": "mstaack/laravel-postgis",
"description": "Postgis extensions for laravel. Aims to make it easy to work with geometries from laravel models",
"require": {
"php": ">=7.1",
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0",
"geo-io/wkb-parser": "^1.0",
"jmikola/geojson": "^1.0",
"bosnadev/database": "^0.21|master"
},
{
"name": "Nicholas Barrett",
"email": "[email protected]"
"require-dev": {
"illuminate/pagination": "^6.0|^7.0|^8.0|^9.0|^10.0",
"phpunit/phpunit": ">=8.5.23",
"mockery/mockery": "^1.3"
},
{
"name": "Max Matteo Staack",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"MStaack\\LaravelPostgis\\DatabaseServiceProvider"
]
"autoload": {
"psr-4": {
"MStaack\\LaravelPostgis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MStaack\\LaravelPostgis\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Peter Haza",
"email": "[email protected]"
},
{
"name": "Nicholas Barrett",
"email": "[email protected]"
},
{
"name": "Max Matteo Staack",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"MStaack\\LaravelPostgis\\DatabaseServiceProvider"
]
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
}
}