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

set php version #65

Merged
merged 54 commits into from
Apr 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
32bc997
set php version
Feb 19, 2024
fdb60ae
set php version
Feb 19, 2024
af73926
set php version
Feb 19, 2024
55ba150
set php version
Feb 19, 2024
2219e5c
set php version
Feb 19, 2024
93e7f63
set php version
Feb 19, 2024
c115136
set php version
Feb 19, 2024
6bacc62
set php version
Feb 20, 2024
c17494c
set php version
Feb 20, 2024
090b933
set php version
Feb 20, 2024
d76df8d
set php version
Feb 20, 2024
22871a8
set php version
Feb 20, 2024
2ab8704
set php version
Feb 20, 2024
3731864
set php version
Feb 20, 2024
b4b888a
set php version
Feb 20, 2024
82601ff
set php version
Feb 21, 2024
a23cd3c
set php version
Feb 21, 2024
db14a66
added dictic fix
Feb 26, 2024
5df68e7
added php versions in ci matrix
Feb 26, 2024
8cf0643
removed php versions in ci matrix
Feb 26, 2024
cc086d6
removed php versions in ci matrix
Feb 26, 2024
bd65aed
removed php versions in ci matrix
Feb 26, 2024
3465709
removed php versions in ci matrix
Feb 26, 2024
7188a3d
removed php versions in ci matrix
Feb 26, 2024
2f7247d
removed php versions in ci matrix
Feb 26, 2024
db0489e
removed php versions in ci matrix
Feb 26, 2024
ba788f2
removed php versions in ci matrix
Feb 26, 2024
0de89ff
removed php versions in ci matrix
Feb 26, 2024
ee72b22
removed php versions in ci matrix
Feb 26, 2024
25f8097
updated ci
Feb 26, 2024
345960b
updated ci
Feb 26, 2024
cbda561
updated ci
Feb 26, 2024
b7d3346
updated ci
Feb 26, 2024
fab3329
updated ci
Feb 26, 2024
d7e3564
updated ci
Feb 26, 2024
4875858
updated ci
Feb 26, 2024
978ad84
updated ci
Feb 26, 2024
31a1e0f
updated ci
Feb 26, 2024
259a7cd
updated ci
Feb 26, 2024
195dc54
updated ci
Feb 26, 2024
9cc0f4f
updated ci
Feb 26, 2024
fe279e7
updated ci
Feb 26, 2024
6c2da84
updated ci
Feb 26, 2024
ca03015
updated ci
Feb 26, 2024
65d2681
updated ci
Feb 26, 2024
c28a3fc
updated ci
Feb 26, 2024
ee1ccd4
updated ci
Feb 26, 2024
dbea81d
updated ci
Feb 26, 2024
f17f062
updated ci
Feb 26, 2024
34c7690
updated logic and test cases
Mar 4, 2024
7df7a3c
update test case
Mar 11, 2024
9c21edd
update test case
Mar 11, 2024
b8305f2
updated ci
Mar 11, 2024
f3029e0
updated ci
Mar 11, 2024
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
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ jobs:
phpunit-versions: [ 'latest' ]
steps:
- uses: actions/checkout@v1

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '${{ matrix.php-versions }}'

- name: Validate composer.json and composer.lock
run: composer validate
Expand Down
9 changes: 7 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,15 @@
"ext-curl": "*",
"guzzlehttp/guzzle": "~6.0 || ~7.0",
"ext-json": "*",
"beberlei/assert": "^3.3"
"beberlei/assert": "^2.9.9"
},
"config": {
"platform": {
"php": "5.6"
}
},
"require-dev": {
"phpunit/phpunit": "^9"
"phpunit/phpunit": "^5.7.27"
},
"support": {
"email": "[email protected]"
Expand Down
Loading