Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/key value endpoint #208

Open
wants to merge 29 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a77eb50
Create KeyValue endpoint + create first test case
michalkorotkiewicz Feb 24, 2022
083559f
Preparing methods + tests for Key Value
michalkorotkiewicz Feb 24, 2022
20d90cf
Upgrade guzzle package to be able use it in unit test with php 7.4 + …
michalkorotkiewicz Feb 25, 2022
a8ff2d4
Cover KeyValue with test + fix problem after update packages
michalkorotkiewicz Feb 25, 2022
c0ae7d5
temporary change name of package
michalkorotkiewicz Feb 28, 2022
daa3503
cs fixer
michalkorotkiewicz Feb 28, 2022
6d1873d
refactor
michalkorotkiewicz Feb 28, 2022
2389414
fix lint warnings
michalkorotkiewicz Feb 28, 2022
8057a3d
allow different guzzle version
michalkorotkiewicz Feb 28, 2022
4251f05
try to pass action
michalkorotkiewicz Feb 28, 2022
83da412
try to pass action on php 7.0
michalkorotkiewicz Feb 28, 2022
e6be4b9
try to pass action on php 7.0
michalkorotkiewicz Feb 28, 2022
4ca03e8
try to pass action on php 7.0
michalkorotkiewicz Feb 28, 2022
12924d3
try to pass action on php 7.0
michalkorotkiewicz Feb 28, 2022
158af52
try to pass action on php 7.1 - 8.1
michalkorotkiewicz Feb 28, 2022
346392d
try to pass action on php 7.1 - 8.1
michalkorotkiewicz Feb 28, 2022
914f14a
try to pass action on php 7.1 - 8.0
michalkorotkiewicz Feb 28, 2022
c67e570
update Guzzle adapter to usefull for KeyValue endpoint. Update KeyVal…
michalkorotkiewicz Mar 2, 2022
85d1f6f
update Guzzle adapter to usefull for KeyValue endpoint. Update KeyVal…
michalkorotkiewicz Mar 2, 2022
5bec00a
fix lint errors
michalkorotkiewicz Mar 2, 2022
1871edb
fix lint errors
michalkorotkiewicz Mar 2, 2022
02c8c9a
Code review fix: stick to major version
michalkorotkiewicz Mar 4, 2022
ead474b
Code review fix: stick to major version
michalkorotkiewicz Mar 4, 2022
1fa28cc
Code review fix: stick to major version
michalkorotkiewicz Mar 4, 2022
331c158
Downgrade guzzle to work with older project
michalkorotkiewicz Mar 8, 2022
00ac326
Downgrade guzzle to work with older project
michalkorotkiewicz Mar 8, 2022
ecd5f0b
force actions
michalkorotkiewicz Mar 8, 2022
55c3f5a
Downgrade guzzle to work with older project
michalkorotkiewicz Mar 8, 2022
4f39401
Downgrade guzzle to work with older project
michalkorotkiewicz Mar 8, 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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4']
php-versions: ['7.3', '7.4', '8.0']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4']
php-versions: ['7.3', '7.4', '8.0', '8.1']

steps:
- uses: actions/checkout@v2
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "cloudflare/sdk",
"name": "smartframe-technologies/cloudflare-php",
"description": "PHP binding for v4 of the Cloudflare Client API.",
"type": "library",
"require": {
"guzzlehttp/guzzle": "^7.0.1",
"php": ">=7.2.5",
"guzzlehttp/guzzle": "^6.3 || ^7.0.1",
"php": ">=7.3",
"psr/http-message": "~1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"phpmd/phpmd" : "@stable",
"friendsofphp/php-cs-fixer": "^2.6"
"friendsofphp/php-cs-fixer": "^2.6",
"phpmd/phpmd": "^2.11.1",
"phpunit/phpunit": "^9.5.16"
},
"license": "BSD-3-Clause",
"authors": [
Expand Down
Loading