From 6ebc2e5559c5947698c99d96e7c2884738d4128c Mon Sep 17 00:00:00 2001 From: Joby Elliott Date: Thu, 23 Aug 2018 21:56:07 -0600 Subject: [PATCH] required PHP version --- composer.json | 59 ++++++++++++++++++++++++++------------------------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/composer.json b/composer.json index 3a938e6..f65524c 100644 --- a/composer.json +++ b/composer.json @@ -1,31 +1,32 @@ { - "name": "byjoby/flatrr", - "description": "A library for working with multi-dimensional arrays through flattened keys", - "type": "library", - "license": "MIT", - "authors": [{ - "name": "Joby Elliott", - "email": "joby@byjoby.com" - }], - "require-dev": { - "phpunit/phpunit": "^7.3" - }, - "autoload": { - "psr-4": { - "Flatrr\\": "src/" - } - }, - "autoload-dev": { - "psr-4": { - "Flatrr\\": "tests/" - } - }, - "scripts": { - "test": [ - "phpunit" - ] - }, - "require": { - "symfony/yaml": "^3.4" + "name": "byjoby/flatrr", + "description": "A library for working with multi-dimensional arrays through flattened keys", + "type": "library", + "license": "MIT", + "authors": [{ + "name": "Joby Elliott", + "email": "joby@byjoby.com" + }], + "require-dev": { + "phpunit/phpunit": "^7.3" + }, + "autoload": { + "psr-4": { + "Flatrr\\": "src/" } -} \ No newline at end of file + }, + "autoload-dev": { + "psr-4": { + "Flatrr\\": "tests/" + } + }, + "scripts": { + "test": [ + "phpunit" + ] + }, + "require": { + "php": ">=7.1", + "symfony/yaml": "^3.4" + } +}