Skip to content

Commit 19e8591

Browse files
authored
Merge pull request #55 from gsteel/PHP-8.2
Support PHP 8.2, Remove PHP 7.4
2 parents e215786 + b733809 commit 19e8591

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1546
-2944
lines changed

.coveralls.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

.gitattributes

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
/.coveralls.yml export-ignore
21
/.gitattributes export-ignore
32
/.github/ export-ignore
43
/.gitignore export-ignore
5-
/.travis.yml export-ignore
64
/docs/ export-ignore
75
/mkdocs.yml export-ignore
86
/phpcs.xml export-ignore
97
/phpunit.xml.dist export-ignore
108
/test/ export-ignore
9+
/psalm.xml export-ignore
10+
/psalm-baseline.xml export-ignore
11+
/renovate.json export-ignore
12+
/.laminas-ci.json export-ignore
13+
/composer.lock export-ignore

.laminas-ci.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"pdo-sqlite"
44
],
55
"ignore_php_platform_requirements": {
6-
"8.0": false
6+
"8.2": true
77
}
88
}

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"dealerdirect/phpcodesniffer-composer-installer": true
2727
},
2828
"platform": {
29-
"php": "7.4.99"
29+
"php": "8.0.99"
3030
}
3131
},
3232
"extra": {
@@ -35,8 +35,8 @@
3535
}
3636
},
3737
"require": {
38-
"php": "^7.4 || ~8.0.0 || ~8.1.0",
39-
"league/oauth2-server": "^8.3.3",
38+
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
39+
"league/oauth2-server": "^8.3.5",
4040
"mezzio/mezzio-authentication": "^1.0",
4141
"psr/container": "^1.0 || ^2.0",
4242
"psr/http-factory": "^1.0",
@@ -46,15 +46,15 @@
4646
},
4747
"require-dev": {
4848
"laminas/laminas-coding-standard": "~2.4.0",
49-
"laminas/laminas-diactoros": "^2.17",
50-
"laminas/laminas-servicemanager": "^3.16.0",
51-
"phpspec/prophecy-phpunit": "^2.0",
52-
"phpunit/phpunit": "^9.5.11",
49+
"laminas/laminas-diactoros": "^2.19",
50+
"laminas/laminas-servicemanager": "^3.19",
51+
"phpunit/phpunit": "^9.5.25",
5352
"psalm/plugin-phpunit": "^0.17.0",
54-
"vimeo/psalm": "^4.27.0"
53+
"vimeo/psalm": "^4.29"
5554
},
5655
"conflict": {
5756
"container-interop/container-interop": "<1.2.0",
57+
"lcobucci/jwt": "<4",
5858
"zendframework/zend-expressive-authentication-oauth2": "*"
5959
},
6060
"autoload": {

0 commit comments

Comments
 (0)