Skip to content

Commit 8782f8c

Browse files
authored
Merge pull request #7 from complycube/release/1.1.3
Release 1.1.3
2 parents 5b0ccd6 + 4ee2c6e commit 8782f8c

86 files changed

Lines changed: 4371 additions & 3392 deletions

Some content is hidden

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

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
/phpunit.xml export-ignore
66
/phpcs.xml.dist export-ignore
77
/tests export-ignore
8+
/DEV.md export-ignore

.github/workflows/php.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
strategy:
88
max-parallel: 1
99
matrix:
10-
operating-system: [ubuntu-18.04, ubuntu-20.04]
11-
php-versions: ['7.4']
10+
operating-system: [ubuntu-latest, ubuntu-20.04]
11+
php-versions: ["7.4", "8.1", "8.2"]
1212

1313
runs-on: ${{ matrix.operating-system }}
1414

@@ -23,6 +23,9 @@ jobs:
2323
- name: Validate composer.json and composer.lock
2424
run: composer validate
2525

26+
- name: Update lock file
27+
run: composer update
28+
2629
- name: Cache Composer packages
2730
id: composer-cache
2831
uses: actions/cache@v2
@@ -34,7 +37,7 @@ jobs:
3437
3538
- name: Install dependencies
3639
if: steps.composer-cache.outputs.cache-hit != 'true'
37-
run: composer install --prefer-dist --no-progress
40+
run: composer install --prefer-dist --no-progress
3841

3942
- name: Run test suites
4043
run: ./vendor/bin/phpunit --coverage-clover coverage.xml

.gitignore

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,31 @@
33
index.php
44
.DS_Store
55

6-
# Ignore PHPUnit coverage file
6+
# Ignore PHPUnit coverage files and directories
77
clover.xml
88
clover/
9+
coverage_html
910

1011
# PHP CS Fixer
1112
.php_cs
1213
.php_cs.cache
1314

1415
# PHPUnit
15-
.phpunit.result.cache
16+
.phpunit.cache
1617

1718
# Build data
1819
/build/
1920
/vendor/
21+
/node_modules
22+
package-lock.json
23+
package.json
2024

2125
# phpDocumenter
2226
.phpdoc/*
2327
phpdoc.xml
2428

2529
.pytest_cache
26-
index.php
30+
index.php
31+
32+
# IDE config
33+
.vscode

.phpunit.result.cache

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

.prettierignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Local Files
2+
.env
3+
index.php
4+
.DS_Store
5+
6+
# Ignore PHPUnit coverage files and directories
7+
clover.xml
8+
clover/
9+
coverage_html
10+
11+
# PHP CS Fixer
12+
.php_cs
13+
.php_cs.cache
14+
15+
# PHPUnit
16+
.phpunit.cache
17+
18+
# Build data
19+
/build/
20+
/vendor/
21+
/node_modules
22+
package-lock.json
23+
package.json
24+
composer.lock
25+
.github/workflows/php.yml
26+
README.md
27+
28+
# phpDocumenter
29+
.phpdoc/*
30+
phpdoc.xml
31+
32+
.pytest_cache
33+
index.php
34+
35+
# IDE config
36+
.vscode

DEV.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# ComplyCube PHP Dev Library

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.1
1+
1.1.3

composer.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@
1818
],
1919
"require": {
2020
"php": ">=7.4",
21-
"caseyamcl/guzzle_retry_middleware": "^2.6",
22-
"guzzlehttp/guzzle": "^7.3"
21+
"caseyamcl/guzzle_retry_middleware": "^2.8.0",
22+
"guzzlehttp/guzzle": "^7.5.0",
23+
"nesbot/carbon": "^2.66"
2324
},
2425
"require-dev": {
25-
"friendsofphp/php-cs-fixer": "^2.17",
26-
"phpunit/phpunit": ">=8.0",
27-
"squizlabs/php_codesniffer": "^3.5"
26+
"friendsofphp/php-cs-fixer": "^3.16.0",
27+
"phpunit/phpunit": ">=9.6.6",
28+
"squizlabs/php_codesniffer": "^3.7.2",
29+
"symfony/var-dumper": ">=5.4.22"
2830
},
2931
"autoload": {
3032
"psr-4": {
@@ -37,7 +39,10 @@
3739
}
3840
},
3941
"scripts": {
40-
"test": "phpunit",
42+
"test": [
43+
"Composer\\Config::disableProcessTimeout",
44+
"phpunit"
45+
],
4146
"check-style": "phpcs lib tests",
4247
"fix-style": "phpcbf lib tests"
4348
},

0 commit comments

Comments
 (0)