From 7eafa4682f8cfc79ae7905564c0a93038db9a300 Mon Sep 17 00:00:00 2001 From: Curtis Loisel <curtis@voceconnect.com> Date: Thu, 7 Nov 2013 09:42:44 -0500 Subject: [PATCH] Adding composer support --- composer.json | 12 +++++++++++ composer.lock | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 68 insertions(+) create mode 100644 composer.json create mode 100644 composer.lock diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f60e858 --- /dev/null +++ b/composer.json @@ -0,0 +1,12 @@ +{ + "name": "automattic/wp-codebird", + "description": "An extension of the Codebird class to use WordPress' HTTP API instead of cURL.", + "version": "1.1.0", + "license": "GPL-2.0+", + "require": { + "mynetx/codebird-php": "dev-develop" + }, + "autoload": { + "files": ["class-wp-codebird.php"] + } +} \ No newline at end of file diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..783c767 --- /dev/null +++ b/composer.lock @@ -0,0 +1,56 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file" + ], + "hash": "47c4aee2960790b203f88ec5ab012e29", + "packages": [ + { + "name": "mynetx/codebird-php", + "version": "dev-develop", + "source": { + "type": "git", + "url": "https://github.com/mynetx/codebird-php.git", + "reference": "a14c59c258e9e93ca6392cb60f65e789f9226b1c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/mynetx/codebird-php/zipball/a14c59c258e9e93ca6392cb60f65e789f9226b1c", + "reference": "a14c59c258e9e93ca6392cb60f65e789f9226b1c", + "shasum": "" + }, + "require": { + "lib-curl": "*", + "lib-openssl": "*" + }, + "type": "library", + "autoload": { + "classmap": [ + "src/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-3.0" + ], + "description": "A Twitter library in PHP.", + "time": "2013-09-13 16:58:55" + } + ], + "packages-dev": [ + + ], + "aliases": [ + + ], + "minimum-stability": "stable", + "stability-flags": { + "mynetx/codebird-php": 20 + }, + "platform": [ + + ], + "platform-dev": [ + + ] +} -- GitLab