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

Commit 083b59e

Browse files
committed
PI-996 update vendor folder
1 parent b136aa5 commit 083b59e

File tree

1,026 files changed

+66003
-30294
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,026 files changed

+66003
-30294
lines changed

vendor/.DS_Store

-6 KB
Binary file not shown.

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

+56
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,65 @@
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+
## [1.1.12](#1.1.12) - 2016-02-3
6+
### Changed
7+
- Moved Guzzle to require-dev [#31](https://github.com/cloudflare/cloudflare-plugin-backend/pull/31)
8+
9+
## [1.1.11](#1.1.11) - 2016-09-27
10+
### Fixed
11+
- Fixed bug where requests were not paginating. [#27](https://github.com/cloudflare/cloudflare-plugin-backend/pull/27)
12+
13+
## [1.1.10](#1.1.10) - 2016-09-12
14+
### Fixed
15+
- Fixed method PUT not having a http body bug. [#26](https://github.com/cloudflare/cloudflare-plugin-backend/pull/26)
16+
17+
## [1.1.9](#1.1.9) - 2016-09-12
18+
### Fixed
19+
- Fixed bugs in Guzzle3 and backend which didn't work with PHP 5.3. [#25](https://github.com/cloudflare/cloudflare-plugin-backend/pull/25)
20+
21+
## [1.1.8](#1.1.8) - 2016-09-12
22+
### Changed
23+
- Downgraded guzzlehttp 5.0 to guzzle 3.9 to support PHP 5.3. [#23](https://github.com/cloudflare/cloudflare-plugin-backend/pull/23)
24+
25+
## [1.1.7](#1.1.7) - 2016-09-6
26+
### Changed
27+
- Moved plugin settings consts from DataStore to Plugin API. [#18](https://github.com/cloudflare/cloudflare-plugin-backend/pull/18)
28+
- createPluginSettingObject() is no longer static. [#18](https://github.com/cloudflare/cloudflare-plugin-backend/pull/18)
29+
30+
### Fixed
31+
- Fixed patchPluginSettings() to return correct JSON structure. [#19](https://github.com/cloudflare/cloudflare-plugin-backend/pull/19)
32+
- Fixed bug where getPluginSettings was returning incorrect JSON structure. [#18](https://github.com/cloudflare/cloudflare-plugin-backend/pull/18)
33+
34+
35+
## [1.1.6](#1.1.6) - 2016-09-5
36+
### Fixed
37+
- Fixed where DataStoreInterface was not included [c3502d](https://github.com/cloudflare/cloudflare-plugin-backend/commit/c3502db2904be385e2ad0e37287085fcecbfba5f)
38+
39+
## [1.1.5](#1.1.5) - 2016-09-2
40+
### Fixed
41+
- Fixed Datastore::get [bdfb9](https://github.com/cloudflare/cloudflare-plugin-backend/commit/bdfb94275bb297473cf0801b33938810c32f0cc3)
42+
43+
## [1.1.4](#1.1.4) - 2016-09-2
44+
### Changed
45+
- Changed Datastore to support objects. [#15](https://github.com/cloudflare/cloudflare-plugin-backend/pull/15)
46+
- Made PageRuleLimitException shorter. [#16](https://github.com/cloudflare/cloudflare-plugin-backend/pull/16)
47+
48+
## [1.1.3](#1.1.3) - 2016-08-31
49+
### Fixed
50+
- Fixed bug where CF\API\AbstractPluginActions::login() would log the user in with invalid credentials. [#14](https://github.com/cloudflare/cloudflare-plugin-backend/pull/14)
51+
52+
## [1.1.2](#1.1.2) - 2016-08-17
53+
### Changed
54+
- Fixed bug in CF\API\Exception. [#13](https://github.com/cloudflare/cloudflare-plugin-backend/pull/13)
55+
56+
## [1.1.1](#1.1.1) - 2016-08-16
57+
### Added
58+
- Added plugin_specific_cache_tag setting to CF\API\Plugin settings. [#12](https://github.com/cloudflare/cloudflare-plugin-backend/pull/12)
59+
560
## [1.1.0](#1.1.0) - 2016-08-11
661
### Added
762
- Added CF\Router\RequestRouter to consolidate duplicate request routing logic each plugin was implementing. [#8](https://github.com/cloudflare/cloudflare-plugin-backend/pull/8)
63+
864
### Changed
965
- PluginRoutes, PluginActions moved to CF\API to consolidate the Internal Plugin API logic across all plugins. [#10](https://github.com/cloudflare/cloudflare-plugin-backend/pull/10)
1066

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2016, CloudFlare. All rights reserved.
1+
Copyright (c) 2016, Cloudflare. All rights reserved.
22

33
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
44

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "cloudflare/cloudflare-plugin-backend",
3-
"description": "A PHP backend for CloudFlare plugins.",
3+
"description": "A PHP backend for Cloudflare plugins.",
44
"license": "BSD-3-Clause",
5-
"version": "1.1.0",
5+
"version": "1.1.12",
66
"scripts": {
77
"test": "vendor/bin/phpunit",
88
"format": "vendor/bin/phpcs -n --standard=PSR2 --extensions=php,live.php src/"
99
},
1010
"require": {
11-
"guzzlehttp/guzzle": "~5.0",
1211
"psr/log": "^1.0"
1312
},
1413
"require-dev": {
1514
"phpunit/phpunit": "4.8.*",
16-
"squizlabs/php_codesniffer": "2.*"
15+
"squizlabs/php_codesniffer": "2.*",
16+
"guzzle/guzzle": "~3.9"
1717
},
1818
"autoload": {
1919
"psr-4": {

0 commit comments

Comments
 (0)