Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency phpunit/phpunit to v10 - abandoned #422

Open
wants to merge 12 commits into
base: 6.4.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
*.php text eol=lf
/.github/ export-ignore
/build/ export-ignore
/test/ export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/composer.lock export-ignore
/infection.json.dist export-ignore
/phpcs.xml.dist export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml export-ignore
/renovate.json export-ignore
14 changes: 6 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
{
"name": "ocramius/ocra-cached-view-resolver",
"description": "Cached view template path resolver to speed up the ZF2 view layer by avoiding stat calls",
"description": "Cached view template path resolver to speed up the Laminas MVC view layer by avoiding stat calls",
"license": "MIT",
"type": "library",
"keywords": [
"zf2",
"zendframework",
"zend framework 2",
"performance"
"performance",
"laminas",
"laminas-view",
"laminas-mvc"
],
"homepage": "https://github.com/Ocramius/OcraCachedViewResolver",
"authors": [
Expand All @@ -28,7 +31,7 @@
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"laminas/laminas-cache-storage-adapter-memory": "^2.2.0",
"phpunit/phpunit": "^9.6.10",
"phpunit/phpunit": "^10.2.7",
"roave/infection-static-analysis-plugin": "^1.32.0",
"vimeo/psalm": "^5.14.1"
},
Expand All @@ -42,11 +45,6 @@
"OcraCachedViewResolverTest\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.1.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
Expand Down
Loading