From 3b76e02d880a8130026e3273fb17f8176a1a36ac Mon Sep 17 00:00:00 2001 From: alexweissman Date: Mon, 27 Feb 2017 17:47:16 -0500 Subject: [PATCH] move dependencies to `require` --- composer.json | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/composer.json b/composer.json index 1a335b2..105452e 100644 --- a/composer.json +++ b/composer.json @@ -6,29 +6,26 @@ "homepage": "https://github.com/userfrosting/i18n", "license" : "MIT", "authors" : [ + { + "name": "Louis Charette" + }, { "name": "Alexander Weissman", "homepage": "https://alexanderweissman.com" } ], "require": { - "php": ">=5.4.0", + "illuminate/config": "5.2.*", + "php": ">=5.6.0", + "twig/twig": "^1.18", "userfrosting/support": "^4.0.0" }, "require-dev": { - "phpunit/phpunit": "5.4.*", - "illuminate/config": "5.2.*", - "twig/twig": "^1.18" + "phpunit/phpunit": "5.4.*" }, "autoload": { "psr-4": { "UserFrosting\\I18n\\": "I18n" } - }, - "extra": { - "branch-alias": { - "dev-dev": "1.0.x-dev" - } - }, - "minimum-stability" : "dev" + } }