Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 91964dd

Browse files
authored
Merge pull request #29 from internalsystemerror/feature/php81
Add support for PHP 8.1
2 parents 39f3dcb + e1cd856 commit 91964dd

136 files changed

Lines changed: 5247 additions & 1037 deletions

File tree

Some content is hidden

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

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/.gitattributes export-ignore
33
/.github/ export-ignore
44
/.gitignore export-ignore
5-
/.travis.yml export-ignore
65
/docs/ export-ignore
76
/mkdocs.yml export-ignore
87
/phpcs.xml export-ignore

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/clover.xml
2-
/composer.lock
32
/coveralls-upload.json
43
/docs/html/
54
/laminas-mkdoc-theme.tgz
65
/laminas-mkdoc-theme/
76
/phpunit.xml
87
/vendor/
9-
.phpunit.result.cache
8+
.phpunit.result.cache
9+
.phpcs-cache

composer.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,25 @@
2626
}
2727
},
2828
"require": {
29-
"php": "^7.3 || ~8.0.0",
29+
"php": "^7.4 || ~8.0.0 || ~8.1.0",
3030
"laminas/laminas-servicemanager": "^3.3.0",
3131
"laminas/laminas-stdlib": "^3.0",
3232
"psr/log": "^1.1.2"
3333
},
3434
"require-dev": {
35-
"laminas/laminas-coding-standard": "~1.0.0",
35+
"ext-dom": "*",
36+
"ext-json": "*",
37+
"ext-xml": "*",
38+
"firephp/firephp-core": "^0.5.3",
39+
"laminas/laminas-coding-standard": "~2.3.0",
3640
"laminas/laminas-db": "^2.6",
3741
"laminas/laminas-escaper": "^2.5",
3842
"laminas/laminas-filter": "^2.5",
3943
"laminas/laminas-mail": "^2.6.1",
4044
"laminas/laminas-validator": "^2.10.1",
4145
"mikey179/vfsstream": "^1.6.7",
4246
"phpspec/prophecy-phpunit": "^2.0",
43-
"phpunit/phpunit": "^9.4.1"
47+
"phpunit/phpunit": "^9.5.10"
4448
},
4549
"provide": {
4650
"psr/log-implementation": "1.0.0"

0 commit comments

Comments
 (0)