commit 9744d6720254acc94fe1ab3d36ba438274716d3c
Author: Igor V Belousov <igor@belousovv.ru>
Date:   Mon Jan 23 00:22:31 2017 +0300

    First

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..68633fb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+.idea/*
+grunt/node_modules/*
\ No newline at end of file
diff --git a/.gitmodules b/.gitmodules
new file mode 100644
index 0000000..895e6a4
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,6 @@
+[submodule "grunt/css/normalize"]
+	path = grunt/css/normalize
+	url = https://mygit.i2g.ru/normalize/
+[submodule "grunt/css/ShortCSS"]
+	path = grunt/css/ShortCSS
+	url = https://github.com/IgorVBelousov/ShortCSS.git
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..934cfcd
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,20 @@
+{
+  "authors":
+  [
+    {
+      "name":     "Igor V Belousov",
+      "email":    "igor@belousovv.ru",
+      "homepage": "http://belousovv.ru",
+      "role":     "Developer"
+    }
+
+  ],
+  "autoload": {
+    "psr-4": {
+      "PTEST\\": ["src/"]
+    }
+  },
+  "require": {
+    "php": ">=5.6.0"
+  }
+}
\ No newline at end of file
diff --git a/grunt/Gruntfile.js b/grunt/Gruntfile.js
new file mode 100644
index 0000000..e37f898
--- /dev/null
+++ b/grunt/Gruntfile.js
@@ -0,0 +1,3 @@
+/**
+ * Created by Игорь on 23.01.2017.
+ */
diff --git a/grunt/css/ShortCSS b/grunt/css/ShortCSS
new file mode 160000
index 0000000..0a278f4
--- /dev/null
+++ b/grunt/css/ShortCSS
@@ -0,0 +1 @@
+Subproject commit 0a278f438581f715d8a54ca8e821715ed30459b6
diff --git a/grunt/css/normalize b/grunt/css/normalize
new file mode 160000
index 0000000..73488db
--- /dev/null
+++ b/grunt/css/normalize
@@ -0,0 +1 @@
+Subproject commit 73488db24a3bac11761f7790beff895f966fd685
diff --git a/grunt/css/style.styl b/grunt/css/style.styl
new file mode 100644
index 0000000..fd5776b
--- /dev/null
+++ b/grunt/css/style.styl
@@ -0,0 +1,3 @@
+@import "ShortCSS/ShortCSS.styl"
+@import "normalize/normalize.styl"
+
diff --git a/grunt/package.json b/grunt/package.json
new file mode 100644
index 0000000..782f925
--- /dev/null
+++ b/grunt/package.json
@@ -0,0 +1,4 @@
+{
+  "name": "ptest",
+  "version": "0.0.1"
+}
diff --git a/public/index.php b/public/index.php
new file mode 100644
index 0000000..4230403
--- /dev/null
+++ b/public/index.php
@@ -0,0 +1,7 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: Игорь
+ * Date: 23.01.2017
+ * Time: 00:21
+ */
\ No newline at end of file
diff --git a/src/C/CAPTCHAController.php b/src/C/CAPTCHAController.php
new file mode 100644
index 0000000..7fe6c5a
--- /dev/null
+++ b/src/C/CAPTCHAController.php
@@ -0,0 +1,14 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: Игорь
+ * Date: 23.01.2017
+ * Time: 00:18
+ */
+
+namespace PTEST;
+
+
+class CAPTCHAController {
+
+}
\ No newline at end of file
diff --git a/src/C/IndexController.php b/src/C/IndexController.php
new file mode 100644
index 0000000..12a30a3
--- /dev/null
+++ b/src/C/IndexController.php
@@ -0,0 +1,14 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: Игорь
+ * Date: 23.01.2017
+ * Time: 00:16
+ */
+
+namespace PTEST;
+
+
+class IndexController {
+
+}
\ No newline at end of file
diff --git a/src/M/AdModel.php b/src/M/AdModel.php
new file mode 100644
index 0000000..86cded2
--- /dev/null
+++ b/src/M/AdModel.php
@@ -0,0 +1,14 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: Игорь
+ * Date: 23.01.2017
+ * Time: 00:20
+ */
+
+namespace PTEST;
+
+
+class AdModel {
+
+}
\ No newline at end of file
diff --git a/src/start.php b/src/start.php
new file mode 100644
index 0000000..8b8bf83
--- /dev/null
+++ b/src/start.php
@@ -0,0 +1,7 @@
+<?php
+/**
+ * Created by PhpStorm.
+ * User: Игорь
+ * Date: 23.01.2017
+ * Time: 00:07
+ */
\ No newline at end of file