소스 검색

Add composer.json

Justin Hileman 13 년 전
부모
커밋
99ff7316b3
2개의 변경된 파일22개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      .gitignore
  2. 21 0
      composer.json

+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+composer.lock

+ 21 - 0
composer.json

@@ -0,0 +1,21 @@
+{
+    "name": "bobthecow/mustache",
+    "description": "A Mustache implementation in PHP.",
+    "keywords": ["templating", "mustache"],
+    "homepage": "https://github.com/bobthecow/mustache.php",
+    "type": "library",
+    "license": "MIT",
+    "authors": [
+        {
+            "name": "Justin Hileman",
+            "email": "justin@justinhileman.info",
+            "homepage": "http://justinhileman.com/"
+        }
+    ],
+    "require": {
+        "php": ">=5.3.0"
+    },
+    "autoload": {
+        "psr-0": { "Mustache": "src/" }
+    }
+}