Browse Source

init

tags/0.1.0
Robin Thoni 8 years ago
commit
11d8d12888
2 changed files with 28 additions and 0 deletions
  1. 18
    0
      composer.json
  2. 10
    0
      src/LuRoute.php

+ 18
- 0
composer.json View File

@@ -0,0 +1,18 @@
1
+{
2
+    "name": "luticate/utils",
3
+    "description": "Luticate user management system utils",
4
+    "authors": [
5
+        {
6
+            "name": "Robin THONI",
7
+            "email": "robin@rthoni.com"
8
+        }
9
+    ],
10
+    "require": {
11
+      "php": ">=5.5.9"
12
+    },
13
+    "autoload": {
14
+      "psr-4": {
15
+        "Luticate\\": "src/"
16
+      }
17
+    }
18
+}

+ 10
- 0
src/LuRoute.php View File

@@ -0,0 +1,10 @@
1
+<?php
2
+
3
+namespace Utils;
4
+
5
+class LuRoute {
6
+    const GET  = 1;
7
+    const POST = 2;
8
+    const DEL  = 3;
9
+    const PUT  = 4;
10
+}

Loading…
Cancel
Save