Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit 2843081

Browse files
author
Andrey Helldar
committed
Added support for 3 version of the andrey-helldar/support package
1 parent 76ae759 commit 2843081

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/laravel.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ jobs:
1010
matrix:
1111
php: [ "7.3", "7.4", "8.0" ]
1212
laravel: [ "7.0", "8.0" ]
13+
support: [ "2.0", "3.0" ]
1314

14-
name: Laravel ${{ matrix.laravel }}, PHP ${{ matrix.php }}
15+
name: Laravel ${{ matrix.laravel }}, PHP ${{ matrix.php }}, Support ${{ matrix.support }}
1516

1617
steps:
1718
- name: Checkout code
@@ -29,7 +30,7 @@ jobs:
2930

3031
- name: Install dependencies
3132
run: |
32-
composer require laravel/framework:^${{ matrix.laravel }}
33+
composer require laravel/framework:^${{ matrix.laravel }} andrey-helldar/support:^${{ matrix.support }}
3334
composer update --prefer-stable --prefer-dist --no-progress --no-interaction
3435
3536
- name: Execute tests

.github/workflows/symfony.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ jobs:
1010
matrix:
1111
php: [ "7.3", "7.4", "8.0" ]
1212
symfony: [ "4.0", "5.0" ]
13+
support: [ "2.0", "3.0" ]
1314

14-
name: Symfony ${{ matrix.symfony }}, PHP ${{ matrix.php }}
15+
name: Symfony ${{ matrix.symfony }}, PHP ${{ matrix.php }}, Support ${{ matrix.support }}
1516

1617
steps:
1718
- name: Checkout code
@@ -29,7 +30,7 @@ jobs:
2930

3031
- name: Install dependencies
3132
run: |
32-
composer require symfony/http-foundation:^${{ matrix.symfony }}
33+
composer require symfony/http-foundation:^${{ matrix.symfony }} andrey-helldar/support:^${{ matrix.support }}
3334
composer update --prefer-stable --prefer-dist --no-progress --no-interaction
3435
3536
- name: Execute tests

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"require": {
1818
"php": "^7.2.5|^8.0",
1919
"ext-json": "*",
20-
"andrey-helldar/support": "^2.16.2",
20+
"andrey-helldar/support": "^2.16.2|^3.0",
2121
"symfony/http-foundation": "^4.0|^5.0"
2222
},
2323
"require-dev": {

0 commit comments

Comments
 (0)