Skip to content

Commit 8de55cb

Browse files
Merge pull request #22 from kiwilan/develop
readme
2 parents 4bbf9cb + 1dd9108 commit 8de55cb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
php: [8.2, 8.1]
12+
php: [8.3, 8.2, 8.1]
1313
stability: [prefer-stable]
1414

1515
name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
PHP package to parse and update audio files metadata, with [`JamesHeinrich/getID3`](https://github.com/JamesHeinrich/getID3).
1313

14-
> **Note**
14+
> [!NOTE]
1515
>
1616
> You can check formats supported on [Supported formats](#supported-formats) section.
1717
@@ -100,7 +100,7 @@ $audio->getCover(); // `?AudioCover` with cover metadata
100100

101101
You can update audio files metadata with `Audio::class`, but not all formats are supported. [See supported formats](#updatable-formats)
102102

103-
> **Warning**
103+
> [!WARNING]
104104
>
105105
> You can use any property of `Audio::class` but if you use a property not supported by the format, it will be ignored.
106106
@@ -142,7 +142,7 @@ Some properties are not supported by all formats, for example `MP3` can't handle
142142

143143
You can set tags manually with `tags` method, but you need to know the format of the tag, you could use `tagFormats` to set formats of tags (if you don't know the format, it will be automatically detected).
144144

145-
> **Warning**
145+
> [!WARNING]
146146
>
147147
> If you use `tags` method, you have to use key used by metadata container. For example, if you want to set album artist in `id3v2`, you have to use `band` key. If you want to know which key to use check `src/Models/AudioCore.php` file.
148148
>

0 commit comments

Comments
 (0)