From a8cf56e4f4bc4ed47d2c646d3da6ca2112e0fa6f Mon Sep 17 00:00:00 2001 From: Simon Wisselink Date: Tue, 24 Jan 2023 16:18:09 +0100 Subject: [PATCH] attempt to load smarty-lexer directly from zip file --- composer.json | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index b6b962bd..62839fa9 100644 --- a/composer.json +++ b/composer.json @@ -48,12 +48,19 @@ }, "require-dev": { "phpunit/phpunit": "^8.5 || ^7.5", - "smarty/smarty-lexer": "dev-master" + "smarty/smarty-lexer": "^4.0.1" }, "repositories": [ - { - "type": "vcs", - "url": "https://github.com/smarty-php/smarty-lexer" - } -] + { + "type": "package", + "package": { + "name": "smarty/smarty-lexer", + "version": "4.0.1", + "dist": { + "url": "https://github.com/smarty-php/smarty-lexer/archive/refs/tags/v4.0.1.zip", + "type": "zip" + } + } + } + ] }