From 1e0203e53c8a338c5c10b378b42360221887f8e0 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Wed, 22 Apr 2020 22:21:10 +0200 Subject: [PATCH] Adds build support --- box.json | 1 + composer.json | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/box.json b/box.json index a852f2e..1ebb413 100644 --- a/box.json +++ b/box.json @@ -6,6 +6,7 @@ "config", "vendor" ], + "exclude-dev-files": false, "files": [ "composer.json" ], diff --git a/composer.json b/composer.json index b4a5013..77a6bd6 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,11 @@ ], "require": { "php": "^7.2.5", - "ext-json": "*", + "ext-json": "*" + }, + "require-dev": { + "mockery/mockery": "^1.3.1", + "phpunit/phpunit": "^8.5", "bfunky/http-parser": "^2.2", "cboden/ratchet": "^0.4.2", "clue/buzz-react": "^2.7", @@ -36,10 +40,6 @@ "symfony/http-kernel": "^4.0|^5.0", "symfony/psr-http-message-bridge": "^2.0" }, - "require-dev": { - "mockery/mockery": "^1.3.1", - "phpunit/phpunit": "^8.5" - }, "autoload": { "psr-4": { "App\\": "app/" @@ -62,5 +62,5 @@ }, "minimum-stability": "dev", "prefer-stable": true, - "bin": ["expose"] + "bin": ["builds/expose"] }