Skip to content

Commit a004a53

Browse files
authored
Merge pull request #18 from amculin/test
V1.3 - Base64 Mode
2 parents 254c830 + 3240c4d commit a004a53

17 files changed

+5566
-842
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3232

3333
- name: Cache dependencies
34-
uses: actions/cache@v2
34+
uses: actions/cache@v3
3535
with:
3636
path: ${{ steps.composer-cache.outputs.dir }}
3737
key: ${{ matrix.php-versions }}-composer-${{ hashFiles('**/composer.json') }}

.github/workflows/php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Cache Composer packages
2121
id: composer-cache
22-
uses: actions/cache@v2
22+
uses: actions/cache@v3
2323
with:
2424
path: vendor
2525
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
},
2121
"require-dev": {
2222
"phpstan/phpstan": "^2.1",
23-
"phpunit/phpunit": "^11.5"
23+
"phpunit/phpunit": "^11.5",
24+
"vimeo/psalm": "^6.5",
25+
"friendsofphp/php-cs-fixer": "^3.72",
26+
"rector/rector": "^2.0"
2427
}
2528
}

0 commit comments

Comments
 (0)