Skip to content
This repository has been archived by the owner on Nov 2, 2022. It is now read-only.

Add free SSL status and retry #80

Open
wants to merge 30 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
cc420fc
Add .gitattributes
tangrufus Mar 13, 2017
5ccf0ce
Version bump 1.10.2 and Lock phpunit version under 6
tangrufus Mar 13, 2017
52fc008
Merge pull request #55 from TangRufus/export-ignore
jamesryanbell Mar 14, 2017
7ec8bd4
Added notes to Access Rules endpoint. Closes #57
jamesryanbell Apr 28, 2017
be5bbff
Apply fixes from StyleCI
jamesryanbell Apr 28, 2017
cfd46fa
Merge pull request #58 from jamesryanbell/analysis-XlmYGN
jamesryanbell Apr 28, 2017
5458993
Use function defaults
holtkamp Jul 9, 2017
83b54ed
Set all headers at once
holtkamp Jul 9, 2017
c4f3778
Add always_use_https() and change_always_use_https()
holtkamp Jul 10, 2017
d585cef
add always_use_https method
Jul 14, 2017
ecaa0dc
add automatic_https_rewrites method
Jul 14, 2017
914a737
remove always_use_https for merge request
Jul 14, 2017
c983888
fix comments
Jul 14, 2017
9f48bc5
Merge pull request #64 from holtkamp/patch-1
jamesryanbell Aug 2, 2017
da391dc
Merge pull request #65 from holtkamp/patch-always-use-https-setting
jamesryanbell Aug 2, 2017
b7df0a3
Merge pull request #63 from holtkamp/patch-2
jamesryanbell Aug 2, 2017
5df5a2e
Merge pull request #69 from shadowlmd/master
jamesryanbell Aug 2, 2017
c8b38c0
Removed version number
jamesryanbell Aug 2, 2017
df89321
Update default data parameters for request methods
Aug 3, 2017
cdf0e37
Fix StyleCI issues
Aug 3, 2017
871dd30
Merge pull request #74 from aaronhuisinga/master
jamesryanbell Aug 4, 2017
2588378
Add free SSL status and retry
Aug 31, 2017
1f39ed4
Merge pull request #1 from fmp777/fmp777-patch-1
Aug 31, 2017
d6fab0b
Added min_tls_version
Dec 4, 2019
1ef7c3f
change composer to my own fork
Dec 4, 2019
d45cb7a
bonehead json mistake
Dec 4, 2019
b1548ac
composer update remove dependency
Dec 4, 2019
a9fb2a3
composer update
Dec 4, 2019
341722a
Update Settings.php - Added the undocumented API feature bot_fight_mo…
fmp777 Sep 24, 2021
f4c2665
Remove double slashes from API calls if they make it in somehow, doub…
Apr 15, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Path-based git attributes
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html

# Ignore everything.
/* export-ignore

# Export white-listed production code only.
/src -export-ignore
/composer.json -export-ignore
/composer.lock -export-ignore

10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "jamesryanbell/cloudflare",
"name": "fmp777/cloudflare",
"description": "CloudFlare API - PHP",
"license": "MIT",
"version": "1.10.1",
"keywords": ["cloudflare", "api"],
"authors": [
{
"name": "James Bell",
"email": "[email protected]"
}
],
"require": {},
"require": {
"fmp777/cloudflare": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "dev-master"
"phpunit/phpunit": "< 6"
},
"autoload": {
"psr-4": {
Expand Down
Loading