Skip to content
This repository was archived by the owner on Feb 13, 2020. It is now read-only.

Commit 7b41408

Browse files
committed
Non-composer installation
1 parent bd81ef5 commit 7b41408

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

README.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,29 @@
33
This plugin is a (*very*) thin veil over vexxhost's [CloudFlare-API](https://github.com/vexxhost/CloudFlare-API) for use in CakePHP controllers.
44
Please use composer to install so that the required dependencies are installed
55

6-
## Installation
6+
## Composer Installation
77

88
* Add to composer, this will also install the Amazon SDK for PHP as a dependency
99

1010
"ali1/cakephp-cloudflare-api": "dev-master"
1111

12-
* Add the component to a controller
12+
## Non-composer Installation
1313

14-
public $components = array('CloudFlareApi.CloudFlareApi');
14+
* Place the contents of this repo in Plugin/CloudFlareApi
15+
* Download the contents of https://github.com/vexxhost/CloudFlare-API into Plugin/CloudFlareApi/Vendor/vexxhost/cloud-flare-api
1516

1617
## Configuration
1718

18-
You must add configuration to bootstrap.php.
19+
* You must add configuration to bootstrap.php.
1920

2021
Configure::write('CloudFlareApi.email', 'CLOUDFLARE EMAIL');
2122
Configure::write('CloudFlareApi.apiKey', 'CLOUDFLARE API KEY');
2223

23-
Don't forget to replace the placeholder text with your actual keys!
24+
* Don't forget to replace the placeholder text with your actual keys!
25+
26+
* Add the component to a controller
2427

25-
## Example
28+
public $components = array('CloudFlareApi.CloudFlareApi');## Example
2629

2730
* Remove a file from the cache
2831

0 commit comments

Comments
 (0)