summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrb-cohen <me@arronwoods.com>2013-12-05 17:40:18 +0000
committerrb-cohen <me@arronwoods.com>2013-12-05 17:40:18 +0000
commit443f679f0ca313f42eb82a4f85de87d70d63d8a5 (patch)
tree829dcc838b450cbcef715124774f3c918f88734a
parent54a36ad6546237da4ad65e09df9a59523b1e6ce0 (diff)
downloadphp-ssrs-443f679f0ca313f42eb82a4f85de87d70d63d8a5.zip
php-ssrs-443f679f0ca313f42eb82a4f85de87d70d63d8a5.tar.gz
php-ssrs-443f679f0ca313f42eb82a4f85de87d70d63d8a5.tar.bz2
Update README.md
-rw-r--r--README.md10
1 files changed, 8 insertions, 2 deletions
diff --git a/README.md b/README.md
index 17033f1..4815f26 100644
--- a/README.md
+++ b/README.md
@@ -10,12 +10,18 @@ The easiest way to use php-ssrs is to install it with composer. If you don't wan
To include the library in to your project using composer, add the following to your composer.json file:
-``` json
+```json
{
"require": {
- "rb-cohen/cif-parser": "dev-master"
+ "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');
+```