소스 검색

Merge pull request #120 from caseycs/packagist

improve composer.json so Pico would be able to publish on Packagist and ...
Gilbert Pellegrom 11 년 전
부모
커밋
fd3ac9405f
1개의 변경된 파일17개의 추가작업 그리고 1개의 파일을 삭제
  1. 17 1
      composer.json

+ 17 - 1
composer.json

@@ -1,6 +1,22 @@
 {
+    "name": "gilbitron/Pico",
+    "type": "library",
+    "description": "Pico is a flat file CMS, this means there is no administration backend and database to deal with. You simply create .md files in the \"content\" folder and that becomes a page.",
+    "keywords": ["cms"],
+    "homepage": "http://pico.dev7studios.com",
+    "license": "MIT",
+    "authors": [
+        {
+            "name": "Gilbert Pellegrom",
+            "email": "gilbert@pellegrom.me"
+        }
+    ],
     "require": {
+        "php": ">=5.2.4",
         "twig/twig": "1.12.*",
-		"michelf/php-markdown": "1.3"
+        "michelf/php-markdown": "1.3"
+    },
+    "autoload": {
+        "files": ["lib/pico.php"]
     }
 }