Commit b001bc30 authored by mondrake's avatar mondrake
Browse files

Issue #3284129 by mondrake: Bump Drupal to ^9.3 | ^10 and cleanup deprecated functions

parent e6851482
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
# File metadata manager

A Drupal 8 module providing a file metadata manager service and API. Allows to
A Drupal module providing a file metadata manager service and API. Allows to
get, via an unified API, information stored in files like EXIF photo
information, TrueType font information, etc.

@@ -38,7 +38,7 @@ The module is inspired by discussions at [#2630242 Provide methods to retrieve E
This ensures that all dependencies get downloaded as well, with the appropriate
release level.

* Drupal 9.2.x and higher
* Drupal 9.3.x and higher or 10.0.x and higher


## Installing
+2 −3
Original line number Diff line number Diff line
@@ -3,13 +3,12 @@
    "type": "drupal-module",
    "description": "Provides a service to manage file metadata.",
    "require": {
        "drupal/core": "^9.2",
        "drupal/core": "^9.3 | ^10",
        "phenx/php-font-lib": "^0.5.4",
        "lsolesen/pel": "^0.9.12"
    },
    "require-dev": {
        "drupal/image_effects": "*",
        "drupal/vendor_stream_wrapper": "^2",
        "drupal/vendor_stream_wrapper": "^2.0.2",
        "fileeye/linuxlibertine-fonts": "^5.3"
    }
}
+1 −1
Original line number Diff line number Diff line
@@ -15,5 +15,5 @@ build:
      run_tests.kernel:
        types: 'PHPUnit-Kernel'
        testgroups: '--all'
        suppress-deprecations: true
        suppress-deprecations: false
        halt-on-fail: false
+1 −1
Original line number Diff line number Diff line
type: module
core_version_requirement: ^9.2
core_version_requirement: ^9.3 | ^10
name: 'File metadata manager'
description: 'Provides a service to manage file metadata.'
package: File metadata
+1 −1
Original line number Diff line number Diff line
# File metadata EXIF

A Drupal 8 module providing a file metadata plugin for the EXIF protocol.
A Drupal module providing a file metadata plugin for the EXIF protocol.


## Features:
Loading