Skip to content

Commit 4f96ad8

Browse files
committed
misc cleanup
1 parent 8921213 commit 4f96ad8

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
[![Build Status](https://travis-ci.org/DataRole/api-client-php.svg?branch=master)](https://travis-ci.org/DataRole/api-client-php)
1+
# DataRole API Client Library for PHP
22

3-
# DataRole API Client Library for PHP #
3+
[![Build Status](https://travis-ci.org/DataRole/api-client-php.svg?branch=master)](https://travis-ci.org/DataRole/api-client-php)
44

55
The DataRole API Client Library enables you to work with DataRole APIs on your server.
66

7-
## Requirements ##
7+
## Requirements
88
* [PHP 5.5.0 or higher](http://www.php.net/)
99

10-
## Developer Documentation ##
10+
## Developer Documentation
1111
http://developers.datarole.com/api
1212

13-
## Installation ##
13+
## Installation
1414

1515
You can use **Composer** or simply **Download the Release**
1616

@@ -45,18 +45,18 @@ require_once '/path/to/datarole-api-php-client/vendor/autoload.php';
4545

4646
For additional installation and setup instructions, see [the documentation](https://developers.datarole.com/api/php#installation).
4747

48-
## Basic Example ##
48+
## Basic Example
4949
See the examples/ directory for examples of the key client features. You can
5050
view them in your browser by running the php built-in web server.
5151

52-
```
53-
$ php -S localhost:8000 -t examples/
52+
```sh
53+
php -S localhost:8000 -t examples/
5454
```
5555

5656
And then browsing to the host and port you specified
5757
(in the above example, `http://localhost:8000`).
5858

59-
```PHP
59+
```php
6060
// include your composer dependencies
6161
require_once 'vendor/autoload.php';
6262

@@ -69,25 +69,25 @@ $client = new DataRole\API\Client([
6969
$client->permit(['Region' => 'CA_Concord'])->preview();
7070
```
7171

72-
## Frequently Asked Questions ##
72+
## Frequently Asked Questions
7373

74-
### What do I do if something isn't working? ###
74+
### What do I do if something isn't working?
7575

7676
For support with the library the best place to ask is via the datarole-api-php-client tag on StackOverflow: http://stackoverflow.com/questions/tagged/datarole-api-php-client
7777

7878
If there is a specific bug with the library, please file an issue in the Github issues tracker, including a (minimal) example of the failing code and any specific errors retrieved.
7979

80-
### How do I contribute? ###
80+
### How do I contribute?
8181

8282
We accept contributions via Github Pull Requests, but all contributors need to be covered by the standard Apache Individual Contributor License Agreement: https://www.apache.org/licenses/icla.txt
8383

84-
## Code Quality ##
84+
## Code Quality
8585

8686
Run the PHPUnit tests with PHPUnit.
8787

8888
phpunit tests/
8989

90-
## License ##
90+
## License
9191

9292
Copyright 2016 HireWheel, LLC
9393

0 commit comments

Comments
 (0)