diff options
author | Anton Luka Šijanec <anton@sijanec.eu> | 2023-02-12 01:13:25 +0100 |
---|---|---|
committer | Anton Luka Šijanec <anton@sijanec.eu> | 2023-02-12 01:13:25 +0100 |
commit | 0e9fc8856dc086f340dd864238b5c8c856ee7a1a (patch) | |
tree | 96041dfda68dfdfaf37a85a605245f7459c5f8f2 /www/composer.json | |
parent | program in začetek analize (diff) | |
download | travnik-0e9fc8856dc086f340dd864238b5c8c856ee7a1a.tar travnik-0e9fc8856dc086f340dd864238b5c8c856ee7a1a.tar.gz travnik-0e9fc8856dc086f340dd864238b5c8c856ee7a1a.tar.bz2 travnik-0e9fc8856dc086f340dd864238b5c8c856ee7a1a.tar.lz travnik-0e9fc8856dc086f340dd864238b5c8c856ee7a1a.tar.xz travnik-0e9fc8856dc086f340dd864238b5c8c856ee7a1a.tar.zst travnik-0e9fc8856dc086f340dd864238b5c8c856ee7a1a.zip |
Diffstat (limited to '')
-rw-r--r-- | www/composer.json | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/www/composer.json b/www/composer.json index ed23328..1ef2be0 100644 --- a/www/composer.json +++ b/www/composer.json @@ -3,12 +3,21 @@ "description": "web frontend for exploring metainfo files downloaded by travnik", "type": "project", "require": { - "rhilip/bencode": "^2.3" + "rhilip/bencode": "^2.3", + "cweagans/composer-patches": "^1.7" }, "authors": [ { "name": "Anton Luka Šijanec", "email": "anton@sijanec.eu" } - ] + ], + "extra": { + "composer-exit-on-patch-failure": true, + "patches": { + "rhilip/bencode": { + "don't check for piece layers validity on parse (called by getFileList/Tree) because we have no piece layers. they aren't present in the info dict.": "no-piece-layers-check.patch" + } + } + } } |