Skip to content

Commit 17909ed

Browse files
authored
Merge pull request #26 from sergeyzinder/master
Add support for symfony/process 6
2 parents 2c3ccda + 147c0b2 commit 17909ed

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/phpstan.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ jobs:
2727
uses: actions/cache@v3
2828
with:
2929
path: /tmp/composer-cache
30-
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
30+
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
3131

3232
- name: Install dependencies
3333
uses: php-actions/composer@v6
3434
with:
35+
php_version: ${{ matrix.php-version }}
3536
args: --prefer-dist --ansi --no-interaction --no-progress --no-suggest
3637

3738
- name: PHPStan

.github/workflows/phpunit-unit.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,12 @@ jobs:
2727
uses: actions/cache@v3
2828
with:
2929
path: /tmp/composer-cache
30-
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
30+
key: ${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}
3131

3232
- name: Install dependencies
3333
uses: php-actions/composer@v6
3434
with:
35+
php_version: ${{ matrix.php-version }}
3536
args: --prefer-dist --ansi --no-interaction --no-progress --no-suggest
3637

3738
- name: PHPUnit Tests

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"ext-openssl": "*",
2323
"phpseclib/phpseclib": "^3.0",
2424
"spomky-labs/php-aes-gcm": "^1.2",
25-
"symfony/process": "^4.1|^5.0"
25+
"symfony/process": "^4.1|^5.0|^6.0"
2626
},
2727
"require-dev": {
2828
"phpunit/phpunit": "^7.5|^9.0",

0 commit comments

Comments
 (0)