From 4aedb3a0d3b35ac559e3b94e3e653b146055d68a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=BDiga=20Stopin=C5=A1ek?= Date: Sat, 1 Feb 2014 22:50:58 +0100 Subject: [PATCH 1/2] phar support --- .gitignore | 2 +- box.json | 6 ++++++ form_view.php => example/form_view.php | 0 index.php => example/index.php | 3 ++- checkbox.php => src/checkbox.php | 0 formkons.php => src/formkons.php | 0 input.php => src/input.php | 0 kelements.php => src/kelements.php | 0 khelpers.php => src/khelpers.php | 0 messages.php => src/messages.php | 0 upload.php => src/upload.php | 0 validation.php => src/validation.php | 0 12 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 box.json rename form_view.php => example/form_view.php (100%) rename index.php => example/index.php (93%) rename checkbox.php => src/checkbox.php (100%) rename formkons.php => src/formkons.php (100%) rename input.php => src/input.php (100%) rename kelements.php => src/kelements.php (100%) rename khelpers.php => src/khelpers.php (100%) rename messages.php => src/messages.php (100%) rename upload.php => src/upload.php (100%) rename validation.php => src/validation.php (100%) diff --git a/.gitignore b/.gitignore index 80f408e..86d8465 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -nbproject/ +*.phar diff --git a/box.json b/box.json new file mode 100644 index 0000000..8556084 --- /dev/null +++ b/box.json @@ -0,0 +1,6 @@ +{ + "directories": [ + "src" + ], + "output": "formkons.phar" +} diff --git a/form_view.php b/example/form_view.php similarity index 100% rename from form_view.php rename to example/form_view.php diff --git a/index.php b/example/index.php similarity index 93% rename from index.php rename to example/index.php index 661b58f..d45e9e4 100644 --- a/index.php +++ b/example/index.php @@ -1,6 +1,7 @@ "post")); diff --git a/checkbox.php b/src/checkbox.php similarity index 100% rename from checkbox.php rename to src/checkbox.php diff --git a/formkons.php b/src/formkons.php similarity index 100% rename from formkons.php rename to src/formkons.php diff --git a/input.php b/src/input.php similarity index 100% rename from input.php rename to src/input.php diff --git a/kelements.php b/src/kelements.php similarity index 100% rename from kelements.php rename to src/kelements.php diff --git a/khelpers.php b/src/khelpers.php similarity index 100% rename from khelpers.php rename to src/khelpers.php diff --git a/messages.php b/src/messages.php similarity index 100% rename from messages.php rename to src/messages.php diff --git a/upload.php b/src/upload.php similarity index 100% rename from upload.php rename to src/upload.php diff --git a/validation.php b/src/validation.php similarity index 100% rename from validation.php rename to src/validation.php From 5b9fa0209f820e82087603be498009528fe484eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=BDiga=20Stopin=C5=A1ek?= Date: Sat, 1 Feb 2014 22:52:53 +0100 Subject: [PATCH 2/2] gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 86d8465..eaf7d1d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ +nbproject/ *.phar