Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.

Commit 89e9a1e

Browse files
authored
Update dependencies to support symfony 6.1 (#11)
1 parent 09d2094 commit 89e9a1e

File tree

5 files changed

+888
-956
lines changed

5 files changed

+888
-956
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: php
22
php:
3-
- '8.0'
3+
- '8.1'
44
before_install:
55
- nvm install 16
66
- npm install

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8-cli
1+
FROM php:8.1-cli
22

33
# PHP ENV
44
RUN apt-get update && apt-get install -y curl git libzip-dev zip sudo \

composer.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@
1414
}
1515
},
1616
"require": {
17-
"php": ">=8.0",
18-
"symfony/config": "^5.3",
19-
"symfony/dependency-injection": "^5.3",
20-
"symfony/http-kernel": "^5.3",
21-
"symfony/routing": "^5.3",
22-
"symfony/validator": "^5.3",
23-
"symfony/yaml": "^5.3"
17+
"php": ">=8.1",
18+
"symfony/config": "^v6.1",
19+
"symfony/dependency-injection": "^v6.1",
20+
"symfony/http-kernel": "^v6.1",
21+
"symfony/routing": "^v6.1",
22+
"symfony/validator": "^v6.1",
23+
"symfony/yaml": "^v6.1"
2424
}
2525
,
2626
"require-dev": {
27-
"friendsofphp/php-cs-fixer": "^3.0",
28-
"phpspec/prophecy": "~1.0",
27+
"friendsofphp/php-cs-fixer": "^3.8",
28+
"phpspec/prophecy": "^1.15.0",
2929
"phpspec/prophecy-phpunit": "^2.0",
30-
"phpunit/phpunit": "^9.5",
30+
"phpunit/phpunit": "^9.5.20",
3131
"roave/security-advisories": "dev-latest",
32-
"vimeo/psalm": "^4.8"
32+
"vimeo/psalm": "^4.23"
3333
},
3434
"config": {
3535
"sort-packages": true,
3636
"platform": {
37-
"php": "8.0"
37+
"php": "8.1"
3838
}
3939
}
4040
}

0 commit comments

Comments
 (0)