From 188f9e8e3d77961c543e0aa1bcbf1aee7f56ab94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 7 Feb 2019 09:26:58 +0100 Subject: [PATCH] Enhancement: Normalize composer.json --- composer.json | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index b7bdfcb..ced51e8 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,13 @@ { "name": "johnkary/phpunit-speedtrap", + "type": "library", "description": "Find slow tests in your PHPUnit test suite", - "keywords": ["PHPUnit", "slow", "profile"], + "keywords": [ + "PHPUnit", + "slow", + "profile" + ], "homepage": "https://github.com/johnkary/phpunit-speedtrap", - "type": "library", "license": "MIT", "authors": [ { @@ -15,6 +19,11 @@ "php": ">=7.1", "phpunit/phpunit": "^7.0" }, + "extra": { + "branch-alias": { + "dev-master": "3.0-dev" + } + }, "autoload": { "psr-4": { "JohnKary\\PHPUnit\\Listener\\": "src/" @@ -24,10 +33,5 @@ "psr-4": { "JohnKary\\PHPUnit\\Listener\\Tests\\": "tests/" } - }, - "extra": { - "branch-alias": { - "dev-master": "3.0-dev" - } } }