Skip to content

Commit a170c56

Browse files
authored
Merge pull request #9 from complycube/release/1.1.5
1.1.5
2 parents f442543 + 950dd86 commit a170c56

File tree

11 files changed

+2117
-979
lines changed

11 files changed

+2117
-979
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
max-parallel: 1
99
matrix:
10-
operating-system: [ubuntu-latest, ubuntu-20.04]
10+
operating-system: [ubuntu-22.04, ubuntu-24.04]
1111
php-versions: ["8.1", "8.2", "8.3", "8.4"]
1212

1313
runs-on: ${{ matrix.operating-system }}
@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Cache Composer packages
3030
id: composer-cache
31-
uses: actions/cache@v2
31+
uses: actions/cache@v3
3232
with:
3333
path: vendor
3434
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

.phpunit.result.cache

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

VERSION

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

composer.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,15 @@
2020
"php": ">=7.4",
2121
"caseyamcl/guzzle_retry_middleware": "^2.8.0",
2222
"guzzlehttp/guzzle": "^7.5.0",
23-
"nesbot/carbon": "^2.66"
23+
"nesbot/carbon": "^2.72.6"
2424
},
2525
"require-dev": {
2626
"friendsofphp/php-cs-fixer": "^3.16.0",
27-
"phpunit/phpunit": ">=9.6.6",
27+
"phpunit/phpunit": "^9.6.6",
2828
"squizlabs/php_codesniffer": "^3.7.2",
29-
"symfony/var-dumper": ">=5.4.22"
29+
"symfony/process": "^6.4.14",
30+
"symfony/var-dumper": ">=5.4.22",
31+
"vlucas/phpdotenv": "^5.6"
3032
},
3133
"autoload": {
3234
"psr-4": {
@@ -41,7 +43,7 @@
4143
"scripts": {
4244
"test": [
4345
"Composer\\Config::disableProcessTimeout",
44-
"phpunit"
46+
"phpunit --configuration phpunit.xml"
4547
],
4648
"check-style": "phpcs lib tests",
4749
"fix-style": "phpcbf lib tests"

0 commit comments

Comments
 (0)