Skip to content

Commit f5f7f11

Browse files
committed
use php-coveralls/php-coveralls
1 parent 0a715a8 commit f5f7f11

File tree

2 files changed

+28
-16
lines changed

2 files changed

+28
-16
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ vendor
44
coverage.json
55
coverage/
66
bin/
7+
build/logs

composer.json

Lines changed: 27 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,18 @@
22
"name": "samsonasik/force-https-module",
33
"type": "library",
44
"description": "Force Https Module",
5-
"keywords": ["zf2", "zf3", "expressive", "middleware", "force", "https", "http", "psr7", "psr11", "psr-15"],
5+
"keywords": [
6+
"zf2",
7+
"zf3",
8+
"expressive",
9+
"middleware",
10+
"force",
11+
"https",
12+
"http",
13+
"psr7",
14+
"psr11",
15+
"psr-15"
16+
],
617
"homepage": "https://github.com/samsonasik/ForceHttpsModule",
718
"license": "MIT",
819
"authors": [
@@ -13,20 +24,28 @@
1324
"role": "Developer"
1425
}
1526
],
16-
"require":{
27+
"require": {
1728
"php": "^7.1",
1829
"zendframework/zend-console": "^2.5"
1930
},
20-
"require-dev": {
21-
"kahlan/kahlan": "^4.0",
22-
"satooshi/php-coveralls": "^2.0",
23-
"zendframework/zend-mvc": "^3.0",
24-
"zendframework/zend-expressive": "^3.0"
25-
},
2631
"conflict": {
2732
"zendframework/zend-expressive": "<3.0",
2833
"zendframework/zend-mvc": "<3.0"
2934
},
35+
"require-dev": {
36+
"kahlan/kahlan": "^4.0",
37+
"php-coveralls/php-coveralls": "^2.1",
38+
"zendframework/zend-expressive": "^3.0",
39+
"zendframework/zend-mvc": "^3.0"
40+
},
41+
"config": {
42+
"bin-dir": "bin"
43+
},
44+
"extra": {
45+
"zf": {
46+
"module": "ForceHttpsModule"
47+
}
48+
},
3049
"autoload": {
3150
"psr-4": {
3251
"ForceHttpsModule\\": "src/"
@@ -36,13 +55,5 @@
3655
"psr-4": {
3756
"ForceHttpsModule\\Spec\\": "spec/"
3857
}
39-
},
40-
"config": {
41-
"bin-dir": "bin"
42-
},
43-
"extra": {
44-
"zf": {
45-
"module": "ForceHttpsModule"
46-
}
4758
}
4859
}

0 commit comments

Comments
 (0)