Skip to content

Commit

Permalink
Merge pull request #1 from laminas/initial-view-helpers
Browse files Browse the repository at this point in the history
Initial view helpers
  • Loading branch information
gsteel authored Nov 26, 2024
2 parents b77dff5 + 016f5e3 commit 73aa8dc
Show file tree
Hide file tree
Showing 24 changed files with 2,647 additions and 1,296 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
/laminas-mkdoc-theme/
/phpunit.xml
/vendor/
.phpunit.result.cache
.phpunit.cache
.phpcs-cache
26 changes: 16 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,24 +18,29 @@
"config": {
"sort-packages": true,
"platform": {
"php": "7.4"
"php": "8.1.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0",
"laminas/laminas-http": "^2.15",
"laminas/laminas-servicemanager": "^3.16.0",
"psr/container": "^1 || ^2"
"php": "~8.1.0 || ~8.2.0",
"laminas/laminas-http": "^2.18",
"laminas/laminas-mvc": "^3.6.1",
"laminas/laminas-router": "^3.11.1",
"laminas/laminas-servicemanager": "^3.21",
"laminas/laminas-stdlib": "^3.17",
"laminas/laminas-view": "^2.28",
"psr/container": "^1.1.2 || ^2",
"webmozart/assert": "^1.11.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.3.0",
"maglnet/composer-require-checker": "^3.8",
"phpunit/phpunit": "^9.5.21",
"psalm/plugin-phpunit": "^0.17.0",
"vimeo/psalm": "^4.25.0"
"laminas/laminas-coding-standard": "~2.4.0",
"maglnet/composer-require-checker": "^4.6",
"phpunit/phpunit": "^10.2.6",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.13.1"
},
"autoload": {
"psr-4": {
Expand All @@ -50,6 +55,7 @@
"scripts": {
"check": [
"@cs-check",
"psalm --stats",
"@test"
],
"cs-check": "phpcs",
Expand Down
Loading

0 comments on commit 73aa8dc

Please sign in to comment.