Skip to content
This repository was archived by the owner on Jun 15, 2022. It is now read-only.

Commit abbfcde

Browse files
committed
Updated cloudflare-plugin-backend
1 parent 2b8af4c commit abbfcde

22 files changed

+438
-261
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"require": {
1313
"symfony/yaml": "~2.6",
1414
"guzzlehttp/guzzle": "~5.0",
15-
"cloudflare/cloudflare-plugin-backend": "2.0.0",
16-
"true/punycode": "~2.0"
15+
"true/punycode": "~2.0",
16+
"cloudflare/cloudflare-plugin-backend": "^2.2"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "4.8.*",

composer.lock

+35-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/autoload.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
// autoload.php @generated by Composer
44

5-
require_once __DIR__ . '/composer' . '/autoload_real.php';
5+
require_once __DIR__ . '/composer/autoload_real.php';
66

77
return ComposerAutoloaderInita8520d81f3cd2f17e91b6f03e69a3d34::getLoader();

vendor/cloudflare/cloudflare-plugin-backend/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [2.2.0](#2.2.0) - 2017-07-10
6+
### Added
7+
- Added a new route to get config. Returns an empty array by default. [#39](https://github.com/cloudflare/cloudflare-plugin-backend/pull/39)
8+
9+
## [2.1.1](#2.1.1) - 2017-04-05
10+
### Changed
11+
- DefaultConfig has a default empty JSON config as the constructor argument now. [#38](https://github.com/cloudflare/cloudflare-plugin-backend/pull/38)
12+
13+
## [2.1.0](#2.1.0) - 2017-03-08
14+
### Changed
15+
- `CF\API\AbstractAPIClient` depends on `CF\API\HttpClientInterface` and uses `CF\API\DefaultHttpClient` (Guzzle 5) [#37](https://github.com/cloudflare/cloudflare-plugin-backend/pull/37)
16+
517
## [2.0.0](#2.0.0) - 2017-03-08
618
### Changed
719
- Reverted `CF\API\AbstractAPIClient` to Guzzle 5 [#35](https://github.com/cloudflare/cloudflare-plugin-backend/pull/35)
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
This is a PHP backend for the official plugins.
1+
[![Build Status](https://travis-ci.org/cloudflare/cloudflare-plugin-backend.svg?branch=master)](https://travis-ci.org/cloudflare/cloudflare-plugin-backend)
2+
3+
This is a PHP backend for the official Cloudflare [cPanel](https://github.com/cloudflare/CloudFlare-CPanel), [Magento](https://github.com/cloudflare/CloudFlare-Magento), and [WordPress](https://github.com/cloudflare/CloudFlare-WordPress) plugins.
24

35
## Installation
4-
`composer require cloudflare/cloudflare-plugin-backend`
6+
`composer require cloudflare/cloudflare-plugin-backend`
7+
8+
## Development
9+
```
10+
$ composer test
11+
$ composer lint
12+
$ composer format
13+
```

vendor/cloudflare/cloudflare-plugin-backend/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cloudflare/cloudflare-plugin-backend",
33
"description": "A PHP backend for Cloudflare plugins.",
44
"license": "BSD-3-Clause",
5-
"version": "2.0.0",
5+
"version": "2.2.0",
66
"scripts": {
77
"test": "vendor/bin/phpunit",
88
"lint": "vendor/bin/phpcs -n --standard=PSR2 --extensions=php src/",
Binary file not shown.

0 commit comments

Comments
 (0)