From c8bb177b9b0f9e2c3049450a8c5c3fffb5006154 Mon Sep 17 00:00:00 2001 From: Maxime Rainville Date: Thu, 18 Oct 2018 10:58:59 +1300 Subject: [PATCH] MINOR upgrade to module to be a vendor-module. --- composer.json | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index b9cb590..43e943a 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "silverstripe/frameworktest", "description": "Aids core and module developers in testing their code against a set of sample data and behaviour.", - "type": "silverstripe-module", + "type": "silverstripe-vendormodule", "keywords": ["silverstripe", "frameworktest", "testing"], "license": "BSD-3-Clause", "authors": [ @@ -15,6 +15,19 @@ "silverstripe/framework": "~4.0", "silverstripe/cms": "~4.0", "guzzlehttp/guzzle": "~6.0", - "fzaninotto/faker": "^1.7" - } + "fzaninotto/faker": "^1.7", + "silverstripe/vendor-plugin": "^1.0" + }, + "extra": { + "expose": [ + "client/dist", + "css", + + ] + }, + "autoload": { + "psr-4": { + "SSilverStripe\\FrameworkTest\\": "code/" + } + } }