From 54a36ad6546237da4ad65e09df9a59523b1e6ce0 Mon Sep 17 00:00:00 2001 From: rb-cohen Date: Thu, 5 Dec 2013 17:25:39 +0000 Subject: Update README.md --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 6439bfd..17033f1 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,20 @@ 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": { + "rb-cohen/cif-parser": "dev-master" + } +} +``` + +See the wiki for information on how to get started! -- cgit v1.1 From 443f679f0ca313f42eb82a4f85de87d70d63d8a5 Mon Sep 17 00:00:00 2001 From: rb-cohen Date: Thu, 5 Dec 2013 17:40:18 +0000 Subject: Update README.md --- README.md | 10 ++++++++-- 1 file 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 + 'thomas', 'password' => 'secureme')); +$ssrs->listChildren('/Report Folder'); +``` -- cgit v1.1