File tree 1 file changed +12
-12
lines changed 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ The [Cloud CMS](https://www.cloudcms.com/) PHP driver is a client library used t
6
6
7
7
To install, run:
8
8
9
- ````
9
+ ```
10
10
composer require cloudcms/cloudcms
11
- ````
11
+ ```
12
12
13
13
## Examples
14
14
15
15
Below are some examples of how you might use this driver:
16
16
17
- ```` php
17
+ ``` php
18
18
19
19
use CloudCMS\CloudCMS;
20
20
@@ -27,7 +27,7 @@ $client = new CloudCMS();
27
27
$platform = $client->connect($config);
28
28
29
29
// List Repositories
30
- $repositories => $platform->listRepositories();
30
+ $repositories = $platform->listRepositories();
31
31
32
32
// Read Repository
33
33
$repository = $platform->readRepository("<repositoryId >");
@@ -65,23 +65,23 @@ $find = array(
65
65
)
66
66
);
67
67
$foundNodes = $branch->findNodes($find);
68
- ````
68
+ ```
69
69
70
70
## Tests
71
71
72
72
To run the tests for this driver, ensure that you have a ` gitana.json ` file in the driver directory, then run:
73
73
74
- ````
74
+ ```
75
75
composer test
76
- ````
76
+ ```
77
77
78
78
## Resources
79
79
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
85
85
86
86
## Support
87
87
You can’t perform that action at this time.
0 commit comments