From 3a65d766c79543f6a9296b6793d9af6afae9e377 Mon Sep 17 00:00:00 2001 From: Damian Mooyman Date: Tue, 28 Nov 2017 13:19:02 +1300 Subject: [PATCH] Remove branch-alias for 2.0 branch --- .editorconfig | 3 +++ composer.json | 63 ++++++++++++++++++++++++--------------------------- 2 files changed, 32 insertions(+), 34 deletions(-) diff --git a/.editorconfig b/.editorconfig index 7d56e29..21a3906 100644 --- a/.editorconfig +++ b/.editorconfig @@ -13,5 +13,8 @@ trim_trailing_whitespace = true [{*.yml,*.json}] indent_size = 2 +[composer.json] +indent_size = 4 + # The indent size used in the package.json file cannot be changed: # https://github.com/npm/npm/pull/3180#issuecomment-16336516 diff --git a/composer.json b/composer.json index 9594136..7293b98 100644 --- a/composer.json +++ b/composer.json @@ -1,36 +1,31 @@ { - "name": "silverstripe/testsession", - "type": "silverstripe-module", - "description": "Support module for browser-based test sessions, e.g. for Behat behaviour testing", - "homepage": "http://silverstripe.org", - "license": "BSD-3-Clause", - "keywords": [ - "silverstripe", - "testing" - ], - "authors": [ - { - "name": "SilverStripe", - "homepage": "http://silverstripe.com" - } - ], - "require": { - "composer/installers": "*", - "silverstripe/framework": "^4@dev" - }, - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, - "scripts": { - "lint": "phpcs -s src/ tests/" - }, - "autoload": { - "psr-4": { - "SilverStripe\\TestSession\\": "src/", - "SilverStripe\\TestSession\\Tests\\": "tests/" - } - }, - "minimum-stability": "dev" + "name": "silverstripe/testsession", + "type": "silverstripe-module", + "description": "Support module for browser-based test sessions, e.g. for Behat behaviour testing", + "homepage": "http://silverstripe.org", + "license": "BSD-3-Clause", + "keywords": [ + "silverstripe", + "testing" + ], + "authors": [ + { + "name": "SilverStripe", + "homepage": "http://silverstripe.com" + } + ], + "require": { + "composer/installers": "*", + "silverstripe/framework": "^4@dev" + }, + "scripts": { + "lint": "phpcs -s src/ tests/" + }, + "autoload": { + "psr-4": { + "SilverStripe\\TestSession\\": "src/", + "SilverStripe\\TestSession\\Tests\\": "tests/" + } + }, + "minimum-stability": "dev" }