From 513f5df3face73727e4a28fa7174c99607ea8796 Mon Sep 17 00:00:00 2001 From: Kuba Mikita Date: Mon, 17 Jul 2017 15:49:18 +0200 Subject: [PATCH 1/3] php requirements --- composer.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f29ff8f..3547e84 100644 --- a/composer.json +++ b/composer.json @@ -8,7 +8,9 @@ "email": "jakub@underdev.it" } ], - "require": {}, + "require": { + "php": ">=5.3.9", + }, "autoload": { "psr-4" : { "underDEV\\Utils\\" : "src" From 0332c2a4f48b495093d89824b8ffef5c810eca73 Mon Sep 17 00:00:00 2001 From: Kuba Mikita Date: Mon, 17 Jul 2017 15:52:29 +0200 Subject: [PATCH 2/3] comma fix --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3547e84..a4417d6 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ } ], "require": { - "php": ">=5.3.9", + "php": ">=5.3.9" }, "autoload": { "psr-4" : { From cf9ad7979aadf2b68bd5cee6b79af63ce5ce3dc9 Mon Sep 17 00:00:00 2001 From: Kuba Mikita Date: Mon, 17 Jul 2017 17:13:42 +0200 Subject: [PATCH 3/3] fix namespace issue --- src/Ajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ajax.php b/src/Ajax.php index ee50fb8..127f482 100644 --- a/src/Ajax.php +++ b/src/Ajax.php @@ -4,7 +4,7 @@ * Handles AJAX calls */ -namespace underDEV\Utils\Utils; +namespace underDEV\Utils; class Ajax {