From dbc102512f87477a96d383bb5610ceaa2637d705 Mon Sep 17 00:00:00 2001 From: Pavel Date: Sun, 26 Apr 2015 14:14:17 +0300 Subject: [PATCH] Add minimum PHP version in composer --- composer.json | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index e0c6bfc..97893d1 100644 --- a/composer.json +++ b/composer.json @@ -4,8 +4,14 @@ "homepage": "https://github.com/xPaw/PHP-Source-Query-Class", "type": "library", "license": "LGPL-2.1", - "autoload": { - "files": [ + "require": + { + "php": ">=5.4", + }, + "autoload": + { + "files": + [ "SourceQuery/SourceQuery.class.php" ] }