aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2011-04-29 11:49:41 +0300
committerFilipp Lepalaan <filipp@mac.com>2011-04-29 11:49:41 +0300
commit462031fb499ae21a3a5deffd856c007697c9168d (patch)
tree054d2ac185001ebdc5003675df7fcea47eeca2b0 /README.md
downloadgsxlib-462031fb499ae21a3a5deffd856c007697c9168d.tar.gz
gsxlib-462031fb499ae21a3a5deffd856c007697c9168d.tar.bz2
gsxlib-462031fb499ae21a3a5deffd856c007697c9168d.zip
first commit
Diffstat (limited to 'README.md')
-rw-r--r--README.md33
1 files changed, 33 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..62d4feb
--- /dev/null
+++ b/README.md
@@ -0,0 +1,33 @@
+##About##
+GsxLib is a PHP library that simplifies communication with Apple's GSX web service API. It frees the application developer
+from knowing the underlying PHP SOAP architecture and to some extent even the GSX API itself. GsxLib also tries to provide
+some performance benefits by minimizing the number of requests made to the servers as well as doing some rudimentary input
+validation (as opposed to burdening Apple's servers with totally invalid requests).
+
+##Requrements##
+Your PHP should have SOAP support enabled. Most distributions should (including OS X Server 10.6 or later).
+For more details, consult your distribution or http://php.net/manual/en/book.soap.php.
+
+##Usage##
+
+ <?php
+
+ include 'gsxlib/gsxlib.php';
+ $gsx = new GsxLib('your sold-to account', 'gsx user', 'password');
+ $info = $gsx->warrantyStatus('serialnumber');
+
+ ?>
+
+
+##License##
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ Version 2, December 2004
+ Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
+ Everyone is permitted to copy and distribute verbatim or modified
+ copies of this license document, and changing it is allowed as long
+ as the name is changed.
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+ 0. You just DO WHAT THE FUCK YOU WANT TO.