Skip to content

Commit 64411a6

Browse files
authored
Merge pull request #103 from tyrsson/replace-removed-featureset-methods-patch
Replace methods, Major type fixes, Phpstan Fixes
2 parents 3cb7531 + f697b8a commit 64411a6

File tree

121 files changed

+829
-2011
lines changed

Some content is hidden

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

121 files changed

+829
-2011
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
; This file is for unifying the coding style for different editors and IDEs.
2+
; More information at http://editorconfig.org
3+
4+
root = true
5+
6+
[*]
7+
charset = utf-8
8+
indent_size = 4
9+
indent_style = space
10+
end_of_line = lf
11+
insert_final_newline = true
12+
trim_trailing_whitespace = true
13+
14+
[Makefile]
15+
indent_style = tab

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
/.phpcs-cache
22
/.phpunit.result.cache
3+
/.phpunit.cache
34
/.phpstan-cache
45
/phpstan.neon
56
/phpbench.json
67
/clover.xml
78
/coveralls-upload.json
89
/phpunit.xml
910
/vendor/
11+
/.vscode

.laminas-ci/phpunit.xml

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

.laminas-ci/pre-run.sh

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

composer.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"phpbench/phpbench": "^1.4",
4141
"phpstan/phpstan": "^2.1",
4242
"phpstan/phpstan-phpunit": "^2.0",
43-
"phpunit/phpunit": "^11.5.15",
43+
"phpunit/phpunit": "^11.5.42",
4444
"rector/rector": "^2.0"
4545
},
4646
"suggest": {
@@ -63,15 +63,18 @@
6363
"scripts": {
6464
"check": [
6565
"@cs-check",
66-
"@static-analysis"
66+
"@sa",
67+
"@test",
68+
"@test-integration"
6769
],
6870
"cs-check": "phpcs",
6971
"cs-fix": "phpcbf",
7072
"test": "phpunit --colors=always --testsuite \"unit test\"",
7173
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
7274
"test-integration": "phpunit --colors=always --testsuite \"integration test\"",
73-
"static-analysis": "vendor/bin/phpstan analyse --memory-limit=256M",
74-
"sa-generate-baseline": "vendor/bin/phpstan analyse --memory-limit=256M --generate-baseline",
75+
"sa": "vendor/bin/phpstan analyse --memory-limit=256M",
76+
"sa-gen-baseline": "vendor/bin/phpstan analyse --memory-limit=256M --generate-baseline",
77+
"sa-verbose": "vendor/bin/phpstan analyse --memory-limit=256M -vv",
7578
"upload-coverage": "coveralls -v"
7679
},
7780
"conflict": {

0 commit comments

Comments
 (0)