Bladeren bron

Add composer.json

Justin Hileman 13 jaren geleden
bovenliggende
commit
99ff7316b3
2 gewijzigde bestanden met toevoegingen van 22 en 0 verwijderingen
  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/" }
+    }
+}