summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--composer.json24
2 files changed, 25 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..22d0d82
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+vendor
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..3af0be5
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,24 @@
+{
+ "name": "openid/php-openid",
+ "version": "2.2.2",
+ "description": "OpenID library for PHP5",
+ "keywords": ["openid", "authentication", "yadis", "auth"],
+ "license": "Apache-2.0",
+ "homepage": "http://github.com/openid/php-openid",
+ "authors": [
+ {
+ "name": "JanRain Inc.",
+ "homepage": "http://www.openidenabled.com"
+ }
+ ],
+ "require": {
+ "php": ">=4.3",
+ "ext-gmp": "*",
+ "ext-curl": "*",
+ "ext-dom": "*"
+ },
+ "autoload": {
+ "classmap": ["Auth"]
+ },
+ "include-path": ["."]
+}