Add a composer.json file
authorAntonio Ospite <ao2@ao2.it>
Fri, 4 Nov 2016 12:18:08 +0000 (13:18 +0100)
committerAntonio Ospite <ao2@ao2.it>
Sat, 5 Nov 2016 21:57:29 +0000 (22:57 +0100)
composer.json [new file with mode: 0644]

diff --git a/composer.json b/composer.json
new file mode 100644 (file)
index 0000000..abc1538
--- /dev/null
@@ -0,0 +1,29 @@
+{
+    "name": "ao2/tweeper",
+    "type": "library",
+    "description": "Tweeper is a web scraper to convert popular social media sites to RSS (e.g. Twitter.com, Instagram.com).",
+    "keywords": ["Twitter", "Instagram", "Facebook", "RSS", "scraper"],
+    "homepage": "https://git.ao2.it/tweeper.git",
+    "license": "GPL-3.0+",
+    "authors": [
+        {
+            "name": "Antonio Ospite",
+            "email": "ao2@ao2.it",
+            "homepage": "https://ao2.it",
+            "role": "Developer"
+        }
+    ],
+    "require": {
+        "php": ">=5.3.0",
+        "ext-curl": "*",
+        "ext-dom": "*",
+        "ext-json": "*",
+        "ext-xsl": "*",
+        "symfony/serializer": "2.7.*",
+        "symfony/property-access": "2.7.*"
+    },
+    "autoload": {
+        "psr-4": { "Tweeper\\": "src/" }
+    },
+    "bin": ["tweeper"]
+}