From 31699236ffe5b89ce4ebf5d9b8d78ecc459ae28e Mon Sep 17 00:00:00 2001 From: DEVizzent Date: Fri, 23 Jan 2026 23:12:43 +0100 Subject: [PATCH 1/2] FIX remove dependencies not needed --- composer.json | 1 - 1 file changed, 1 deletion(-) diff --git a/composer.json b/composer.json index d1aa865..312c645 100755 --- a/composer.json +++ b/composer.json @@ -32,7 +32,6 @@ "phpunit/phpunit": "^6.5 || ^7.5 || ^8.5 || ^9.4 || ^11.4", "oai/openapi-specification-3.0": "3.0.3", - "oai/openapi-specification-3.1": "3.1.0", "mermade/openapi3-examples": "1.0.0", "apis-guru/openapi-directory": "1.0.0", From 0060874993a3576b3c6788f91da927349f4bdab8 Mon Sep 17 00:00:00 2001 From: DEVizzent Date: Fri, 23 Jan 2026 23:13:20 +0100 Subject: [PATCH 2/2] Fix the docker workflow --- Makefile | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) mode change 100644 => 100755 Makefile diff --git a/Makefile b/Makefile old mode 100644 new mode 100755 index 421c571..ca2b51b --- a/Makefile +++ b/Makefile @@ -11,8 +11,8 @@ DOCKER_PHP= DOCKER_NODE= IN_DOCKER=0 ifeq ($(IN_DOCKER),1) -DOCKER_PHP=docker-compose run --rm php -DOCKER_NODE=docker-compose run --rm -w /app node +DOCKER_PHP=docker compose run --rm php +DOCKER_NODE=docker compose run --rm -w /app node endif all: @@ -67,16 +67,6 @@ lint: install stan: $(DOCKER_PHP) php $(PHPARGS) vendor/bin/phpstan analyse -l 5 src -# copy openapi3 json schema -schemas/openapi-v3.0.json: vendor/oai/openapi-specification-3.0/schemas/v3.0/schema.json - cp $< $@ -schemas/openapi-v3.0.yaml: vendor/oai/openapi-specification-3.0/schemas/v3.0/schema.yaml - cp $< $@ -schemas/openapi-v3.1.json: vendor/oai/openapi-specification-3.1/schemas/v3.1/schema.json - cp $< $@ -schemas/openapi-v3.1.yaml: vendor/oai/openapi-specification-3.1/schemas/v3.1/schema.yaml - cp $< $@ - php-cs-fixer.phar: wget -q https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.16.7/php-cs-fixer.phar && chmod +x php-cs-fixer.phar