Skip to content

Commit 140694b

Browse files
authored
Merge pull request #4 from DarkGit/master
replaced zend packages with laminas
2 parents a5cee6e + 3691c63 commit 140694b

10 files changed

Lines changed: 2927 additions & 1259 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,6 @@ vendor
1717

1818
tests/unit/coverage/*
1919
!tests/unit/coverage/.gitkeep
20+
21+
.phpunit.result.cache
22+
tests/unit/.phpunit.result.cache

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@
2929
}
3030
},
3131
"require": {
32-
"php" : ">=5.6",
33-
"g4/mcache" : "*",
34-
"zendframework/zend-cache" : "2.8.*",
35-
"zendframework/zend-session": "2.9.*"
32+
"php" : ">=7.3",
33+
"g4/mcache" : "*",
34+
"laminas/laminas-cache" : "2.13.*",
35+
"laminas/laminas-session" : "2.12.*"
3636
},
3737
"require-dev": {
38-
"phpunit/phpunit" : "5.*",
38+
"phpunit/phpunit" : "9.*",
3939
"squizlabs/php_codesniffer" : "3.*",
4040
"g4/code-coverage" : "1.*"
4141
},
4242
"scripts": {
4343
"unit-test": [
44-
"vendor/bin/phpunit -c tests/unit/phpunit.xml --colors=always --coverage-html tests/unit/coverage"
44+
"./vendor/bin/phpunit -c tests/unit/phpunit.xml --colors=always --coverage-html tests/unit/coverage"
4545
],
4646
"test-coverage": [
4747
"./vendor/bin/phpunit --colors=always -c tests/unit/phpunit.xml --coverage-text"

0 commit comments

Comments
 (0)