Skip to content

Commit 7908856

Browse files
TavoNiievezgnievesj
authored andcommitted
Code standards updated to PHP 7.1 (#57)
1 parent 2f35e75 commit 7908856

File tree

9 files changed

+249
-252
lines changed

9 files changed

+249
-252
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: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name":"codeception/module-rest",
33
"description":"REST module for Codeception",
44
"keywords":["codeception", "rest"],
5-
"homepage":"http://codeception.com/",
5+
"homepage":"https://codeception.com/",
66
"type":"library",
77
"license":"MIT",
88
"authors":[
@@ -12,10 +12,12 @@
1212
],
1313
"minimum-stability": "RC",
1414
"require": {
15-
"php": ">=5.6.6 <9.0",
16-
"softcreatr/jsonpath": "^0.5 || ^0.7",
15+
"php": "^7.1 | ^8.0",
16+
"ext-dom": "*",
17+
"ext-json": "*",
1718
"codeception/codeception": "^4.0",
18-
"justinrainbow/json-schema": "~5.2.9"
19+
"justinrainbow/json-schema": "~5.2.9",
20+
"softcreatr/jsonpath": "^0.5 | ^0.7"
1921
},
2022
"require-dev": {
2123
"codeception/util-universalframework": "^1.0",

readme.md

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

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

1216
```

0 commit comments

Comments
 (0)