summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorarron <arron@copiadigital.co.uk>2013-12-05 17:55:40 +0000
committerarron <arron@copiadigital.co.uk>2013-12-05 17:55:40 +0000
commit24ac87f6ed3f1ffea5296dea72cfd3b5e939e7ca (patch)
tree559b84bb4536f03d8566f3a228756e26b108e35b
parent13bdf26420b5cc4c3669eb515d89c869338d8cf1 (diff)
parent443f679f0ca313f42eb82a4f85de87d70d63d8a5 (diff)
downloadphp-ssrs-24ac87f6ed3f1ffea5296dea72cfd3b5e939e7ca.zip
php-ssrs-24ac87f6ed3f1ffea5296dea72cfd3b5e939e7ca.tar.gz
php-ssrs-24ac87f6ed3f1ffea5296dea72cfd3b5e939e7ca.tar.bz2
Merge branch 'master' of https://github.com/ChartBlocks/php-ssrs
-rw-r--r--README.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6439bfd..4815f26 100644
--- a/README.md
+++ b/README.md
@@ -2,3 +2,26 @@ php-ssrs
========
PHP library for connecting to SSRS over SOAP
+
+Installation / Usage
+--------------------
+
+The easiest way to use php-ssrs is to install it with composer. If you don't want to use composer, you can download the project and autoload it manually.
+
+To include the library in to your project using composer, add the following to your composer.json file:
+
+```json
+{
+ "require": {
+ "chartblocks/php-ssrs": "~1.0."
+ }
+}
+```
+
+See the wiki for information on how to get started!
+
+```php
+<?php
+$ssrs = new SSRS_Report('http://server/reportserver/', array('username' => 'thomas', 'password' => 'secureme'));
+$ssrs->listChildren('/Report Folder');
+```