Skip to content

Commit

Permalink
Fixing bugs in README
Browse files Browse the repository at this point in the history
  • Loading branch information
cobisja committed Jan 17, 2015
1 parent f7108b7 commit 14ae63c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,23 @@ After download TAD-PHP, you have 2 ways to get your enviroment configured to use
Even if Composer it's the preferred method to generate the files needed to get all classes loaded, maybe you want to do the task by hand:

1. Copy and paste TAD-PHP folder in your project root.

2. Rename TAD-PHP folder to use a shorter name (for example 'tad').

3. Require/Include all classes required by TAD-PHP using the relative TAD-PHP path

```php
<?php
require 'tad/lib/TADFactory.php';
require 'tad/lib/TAD.php';
require 'tad/lib/TAD.php';
require 'tad/lib/TADResponse.php';
require 'tad/lib/Providers/TADSoap.php';
require 'tad/lib/Providers/TADZKLib.php';
require 'tad/lib/Exceptions/ConnectionError.php';
require 'tad/lib/Exceptions/FilterArgumentError.php';
require 'tad/lib/Exceptions/UnrecognizedArgument.php';
require 'tad/lib/Exceptions/UnrecognizedCommand.php';

```

####Handling namespaces
Expand Down

0 comments on commit 14ae63c

Please sign in to comment.