Skip to content

Commit e6e13fd

Browse files
committed
Bump requirements
1 parent e4bf0cc commit e6e13fd

File tree

3 files changed

+7
-19
lines changed

3 files changed

+7
-19
lines changed

.github/workflows/static-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup PHP
3131
uses: shivammathur/setup-php@v2
3232
with:
33-
php-version: 8.1
33+
php-version: 8.2
3434
- name: Install dependencies
3535
uses: "ramsey/composer-install@v3"
3636
- run: ${{ matrix.script }}

.github/workflows/tests.yaml

Lines changed: 4 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ on:
44
pull_request: null
55
push:
66
branches:
7-
- master
7+
- 1.x
88
schedule:
99
- cron: "45 7 * * 1"
1010

1111
jobs:
1212
Tests:
1313
name: PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}${{ matrix.dependencies }}
1414
runs-on: ubuntu-latest
15-
continue-on-error: ${{ matrix.experimental == true }}
1615
env:
1716
SYMFONY_DEPRECATIONS_HELPER: 'max[self]=0'
1817
strategy:
@@ -21,24 +20,14 @@ jobs:
2120
- '8.4'
2221
- '8.3'
2322
- '8.2'
24-
- '8.1'
25-
- '8.0'
26-
- '7.4'
2723
symfony: ['']
28-
experimental: [false]
2924
include:
25+
- symfony: '^7.3'
26+
php: '8.3'
3027
- symfony: '^6.4'
31-
os: 'ubuntu-latest'
3228
php: '8.2'
33-
- symfony: '^5.4'
34-
os: 'ubuntu-latest'
35-
php: '7.4'
36-
- symfony: '^4.4'
37-
os: 'ubuntu-latest'
38-
php: '7.4'
3929
- description: 'Prefer lowest'
40-
os: 'ubuntu-latest'
41-
php: '7.4'
30+
php: '8.2'
4231
dependencies: '--prefer-lowest'
4332
env:
4433
SYMFONY_DEPRECATIONS_HELPER: 'disabled'

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,8 @@
3030
}
3131
},
3232
"require": {
33-
"php": "^7.4 | ^8.0",
34-
"ext-pcntl": "*",
35-
"symfony/console": "^4.4 | ^5.4 | ^6.0 | ^7.0"
33+
"php": "^8.2",
34+
"symfony/console": "^6.4 | ^7.0"
3635
},
3736
"require-dev": {
3837
"facile-it/facile-coding-standard": "^1.2",

0 commit comments

Comments
 (0)