Skip to content

Commit cc9964a

Browse files
committed
update to php 8 and latest lts version
1 parent 115cd91 commit cc9964a

File tree

7 files changed

+845
-769
lines changed

7 files changed

+845
-769
lines changed

.github/workflows/php.yml

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

1616
strategy:
1717
matrix:
18-
php-versions: [ '7.4', '8.0' ]
18+
php-versions: [ '8.0', '8.1' ]
1919

2020
steps:
2121
- name: Checkout Repository

composer.json

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,12 @@
2929
}
3030
],
3131
"require": {
32-
"php": "~7.4|^8.0",
32+
"php": "^8.0",
3333
"ext-session": "*",
3434

35-
"symfony/config": "^4.4|^5.0",
36-
"symfony/console": "^4.4|^5.0",
37-
"symfony/http-kernel": "^4.4|^5.0",
38-
"symfony/dependency-injection": "^4.4|^5.0",
35+
"symfony/config": "^5.4|^6.0",
36+
"symfony/http-kernel": "^5.4|^6.0",
37+
"symfony/dependency-injection": "^5.4|^6.0",
3938

4039
"doctrine/dbal": "^2.10|^3.0",
4140
"doctrine/common": "^2.13|^3.0",
@@ -46,15 +45,15 @@
4645
"require-dev":{
4746
"doctrine/coding-standard": "^9.0",
4847
"roave/security-advisories": "dev-master",
49-
"squizlabs/php_codesniffer": "^3.4",
50-
"phpstan/phpstan": "^0.12",
51-
"phpstan/phpstan-deprecation-rules": "^0.12",
52-
"phpstan/phpstan-phpunit": "^0.12",
53-
"phpstan/phpstan-strict-rules": "^0.12",
54-
"maglnet/composer-require-checker": "^3.1",
55-
"phpunit/phpunit": "^9.0",
48+
"squizlabs/php_codesniffer": "^3.6",
49+
"phpstan/phpstan": "^1.2",
50+
"phpstan/phpstan-deprecation-rules": "^1.0",
51+
"phpstan/phpstan-phpunit": "^1.0",
52+
"phpstan/phpstan-strict-rules": "^1.0",
53+
"maglnet/composer-require-checker": "^3.6",
54+
"phpunit/phpunit": "^9.5",
5655
"symfony/var-dumper": "^5.3",
57-
"dg/bypass-finals": "^1.1",
56+
"dg/bypass-finals": "^1.3",
5857
"icanhazstring/composer-unused": "^0.7"
5958
},
6059
"autoload": {
@@ -79,15 +78,15 @@
7978
},
8079
"config": {
8180
"platform": {
82-
"php": "7.4.21"
81+
"php": "8.0.2"
8382
},
8483
"preferred-install": {
8584
"*": "dist"
8685
}
8786
},
8887
"extra": {
8988
"branch-alias": {
90-
"dev-master": "4.0-dev"
89+
"dev-master": "5.0-dev"
9190
}
9291
},
9392
"minimum-stability": "dev",

0 commit comments

Comments
 (0)