Skip to content

Commit 565aa25

Browse files
authored
Code standards updated to PHP 7.1 (#8)
1 parent 4611133 commit 565aa25

File tree

5 files changed

+140
-111
lines changed

5 files changed

+140
-111
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: [5.6, 7.0, 7.1, 7.2, 7.3, 7.4, 8.0]
11+
php: [7.1, 7.2, 7.3, 7.4, 8.0]
1212

1313
steps:
1414
- name: Checkout code

composer.json

Lines changed: 29 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
11
{
2-
"name":"codeception/module-soap",
3-
"description":"Soap module for Codeception",
4-
"keywords":["codeception", "soap"],
5-
"homepage":"http://codeception.com/",
6-
"type":"library",
7-
"license":"MIT",
8-
"authors":[
9-
{
10-
"name":"Michael Bodnarchuk"
11-
}
12-
],
13-
"minimum-stability": "RC",
14-
"require": {
15-
"php": ">=5.6.0 <9.0",
16-
"ext-dom": "*",
17-
"codeception/codeception": "^4.0",
18-
"codeception/lib-innerbrowser": "^1.0"
19-
},
20-
"require-dev": {
21-
"codeception/util-universalframework": "^1.0"
22-
},
23-
"autoload":{
24-
"classmap": ["src/"]
25-
},
26-
"config": {
27-
"classmap-authoritative": true
28-
}
2+
"name": "codeception/module-soap",
3+
"description": "Soap module for Codeception",
4+
"keywords": [ "codeception", "soap" ],
5+
"homepage": "https://codeception.com/",
6+
"type": "library",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Michael Bodnarchuk"
11+
}
12+
],
13+
"minimum-stability": "RC",
14+
"require": {
15+
"php": "^7.1 || ^8.0",
16+
"ext-dom": "*",
17+
"codeception/codeception": "^4.0",
18+
"codeception/lib-innerbrowser": "^1.0"
19+
},
20+
"require-dev": {
21+
"codeception/util-universalframework": "^1.0"
22+
},
23+
"autoload": {
24+
"classmap": [
25+
"src/"
26+
]
27+
},
28+
"config": {
29+
"classmap-authoritative": true
30+
}
2931
}

readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ A SOAP module for Codeception.
77
[![Total Downloads](https://poser.pugx.org/codeception/module-soap/downloads)](https://packagist.org/packages/codeception/module-soap)
88
[![License](https://poser.pugx.org/codeception/module-soap/license)](/LICENSE)
99

10+
## Requirements
11+
12+
* `PHP 7.1` or higher.
13+
1014
## Installation
1115

1216
```

0 commit comments

Comments
 (0)