Skip to content

Commit a9980c2

Browse files
author
Harry Moore
committed
README typo fix
1 parent 9536253 commit a9980c2

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ The [Cloud CMS](https://www.cloudcms.com/) PHP driver is a client library used t
66

77
To install, run:
88

9-
````
9+
```
1010
composer require cloudcms/cloudcms
11-
````
11+
```
1212

1313
## Examples
1414

1515
Below are some examples of how you might use this driver:
1616

17-
````php
17+
```php
1818

1919
use CloudCMS\CloudCMS;
2020

@@ -27,7 +27,7 @@ $client = new CloudCMS();
2727
$platform = $client->connect($config);
2828

2929
// List Repositories
30-
$repositories => $platform->listRepositories();
30+
$repositories = $platform->listRepositories();
3131

3232
// Read Repository
3333
$repository = $platform->readRepository("<repositoryId>");
@@ -65,23 +65,23 @@ $find = array(
6565
)
6666
);
6767
$foundNodes = $branch->findNodes($find);
68-
````
68+
```
6969

7070
## Tests
7171

7272
To run the tests for this driver, ensure that you have a `gitana.json` file in the driver directory, then run:
7373

74-
````
74+
```
7575
composer test
76-
````
76+
```
7777

7878
## Resources
7979

80-
* Cloud CMS: https://www.cloudcms.com
81-
* Github: http://github.com/gitana/cloudcms-php-driver
82-
* PHP Driver Download: https://packagist.org/packages/cloudcms/cloudcms
83-
* Cloud CMS Documentation: https://www.cloudcms.com/documentation.html
84-
* Developers Guide: https://www.cloudcms.com/developers.html
80+
- Cloud CMS: https://www.cloudcms.com
81+
- Github: http://github.com/gitana/cloudcms-php-driver
82+
- PHP Driver Download: https://packagist.org/packages/cloudcms/cloudcms
83+
- Cloud CMS Documentation: https://www.cloudcms.com/documentation.html
84+
- Developers Guide: https://www.cloudcms.com/developers.html
8585

8686
## Support
8787

0 commit comments

Comments
 (0)