Skip to content
Merged
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
6 changes: 2 additions & 4 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@
/.gitattributes export-ignore
/.github/ export-ignore
/.gitignore export-ignore
/.travis.yml export-ignore
/docs/ export-ignore
/mkdocs.yml export-ignore
/phpcs.xml export-ignore
/phpunit.xml.dist export-ignore
/test/ export-ignore
/Vagrantfile export-ignore
/rector.php export-ignore
/renovate.json export-ignore
16 changes: 0 additions & 16 deletions .github/workflows/docs-build.yml

This file was deleted.

6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/.phpcs-cache
/.phpunit.result.cache
/.vagrant/
/.phpstan-cache
/phpstan.neon
/clover.xml
/coveralls-upload.json
/docs/html/
/laminas-mkdoc-theme.tgz
/laminas-mkdoc-theme/
/phpunit.xml
/vendor/
9 changes: 9 additions & 0 deletions .gitignore copy
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/.phpcs-cache
/.phpstan-cache
/phpstan.neon
/.phpunit.cache
/.phpunit.result.cache
/phpunit.xml
/vendor/
/xdebug_filter.php
/clover.xml
10 changes: 10 additions & 0 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,15 @@
"pdo-sqlite",
"sqlite3",
"sqlsrv"
],
"additional_checks": [
{
"name": "PhpStan",
"job": {
"php": "8.2",
"dependencies": "latest",
"command": "composer require --dev phpstan/phpstan && vendor/bin/phpstan analyse"
}
}
]
}
23 changes: 0 additions & 23 deletions .psr-container.php.stub

This file was deleted.

17 changes: 9 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@
},
"extra": {
"laminas": {
"config-provider": "PhpDb\\Container\\ConfigProvider"
"config-provider": "PhpDb\\ConfigProvider"
}
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
"laminas/laminas-servicemanager": "^4.0.0",
"laminas/laminas-stdlib": "^3.20.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^3.0.1",
"laminas/laminas-eventmanager": "^3.14.0",
"phpunit/phpunit": "^11.5.12",
"psalm/plugin-phpunit": "^0.19.2",
"rector/rector": "^2.0",
"vimeo/psalm": "^6.8.8"
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^11.5.15",
"rector/rector": "^2.0"
},
"suggest": {
"laminas/laminas-eventmanager": "Laminas\\EventManager component",
Expand All @@ -60,14 +60,15 @@
"scripts": {
"check": [
"@cs-check",
"@test"
"@static-analysis"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always --testsuite \"unit test\"",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"test-integration": "phpunit --colors=always --testsuite \"integration test\"",
"static-analysis": "psalm --shepherd --stats",
"static-analysis": "vendor/bin/phpstan analyse --memory-limit=256M",
"sa-generate-baseline": "vendor/bin/phpstan analyse --memory-limit=256M --generate-baseline",
"upload-coverage": "coveralls -v"
},
"conflict": {
Expand Down
Loading
Loading