Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Bump dependencies for Laravel 10
Browse files Browse the repository at this point in the history
  • Loading branch information
laravel-shift committed Feb 1, 2023
1 parent 2483bd8 commit eddd725
Showing 1 changed file with 46 additions and 46 deletions.
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"
}
}

0 comments on commit eddd725

Please sign in to comment.