Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['8.3']
php-versions: ['8.4']
databases: ['sqlite']
server-versions: ['master']

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['8.3']
php-versions: ['8.4']
databases: ['sqlite']
server-versions: ['master']

Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<description><![CDATA[OpenStreetMap integration provides a search provider for locations, a reference
provider to render location links from various map services (OpenStreetMap, Google maps...) and a custom link picker
component to quickly insert a location link by searching or selecting a point on an (awesome) interactive map.]]></description>
<version>3.0.0</version>
<version>4.0.0</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>Osm</namespace>
Expand All @@ -21,7 +21,7 @@ component to quickly insert a location link by searching or selecting a point on
<screenshot>https://github.com/nextcloud/integration_openstreetmap/raw/main/img/screenshot3.jpg</screenshot>
<screenshot>https://github.com/nextcloud/integration_openstreetmap/raw/main/img/screenshot4.jpg</screenshot>
<dependencies>
<nextcloud min-version="32" max-version="33"/>
<nextcloud min-version="33" max-version="34"/>
</dependencies>
<settings>
<admin>OCA\Osm\Settings\Admin</admin>
Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,14 @@
"require-dev": {
"nextcloud/coding-standard": "^1.1",
"nextcloud/ocp": "dev-master",
"phpunit/phpunit": "^12"
"phpunit/phpunit": "^13"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
},
"platform": {
"php": "8.4.1"
}
},
"extra": {
Expand Down
Loading