From 7ea35f4221e7962cda82e606b3aca8389de47c46 Mon Sep 17 00:00:00 2001 From: Michael Yoo Date: Sun, 1 Feb 2015 14:13:25 +1030 Subject: [PATCH] Add Composer Support --- .gitignore | 2 ++ composer.json | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..45832c7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/.idea/ +/vendor/ \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..e0c6bfc --- /dev/null +++ b/composer.json @@ -0,0 +1,12 @@ +{ + "name": "xpaw/php-source-query-class", + "description": "PHP Class to query servers based on \"Source Engine Query\"", + "homepage": "https://github.com/xPaw/PHP-Source-Query-Class", + "type": "library", + "license": "LGPL-2.1", + "autoload": { + "files": [ + "SourceQuery/SourceQuery.class.php" + ] + } +}