Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
php: [5.6, 7.0, 7.1, 7.2, 7.3, 7.4, 8.0]
php: [7.1, 7.2, 7.3, 7.4, 8.0]

steps:
- name: Checkout code
Expand Down
66 changes: 35 additions & 31 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,37 @@
{
"name":"codeception/module-rest",
"description":"REST module for Codeception",
"keywords":["codeception", "rest"],
"homepage":"http://codeception.com/",
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Gintautas Miselis"
}
],
"minimum-stability": "RC",
"require": {
"php": ">=5.6.0 <9.0",
"softcreatr/jsonpath": "^0.5 || ^0.7",
"codeception/codeception": "^4.0",
"justinrainbow/json-schema": "~5.2.9"
},
"require-dev": {
"codeception/util-universalframework": "^1.0",
"codeception/lib-innerbrowser": "^1.0"
},
"suggest": {
"aws/aws-sdk-php": "For using AWS Auth"
},
"autoload":{
"classmap": ["src/"]
},
"config": {
"classmap-authoritative": true
}
"name": "codeception/module-rest",
"description": "REST module for Codeception",
"keywords": [ "codeception", "rest" ],
"homepage": "https://codeception.com/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Gintautas Miselis"
}
],
"minimum-stability": "RC",
"require": {
"php": "^7.1 || ^8.0",
"ext-dom": "*",
"ext-json": "*",
"codeception/codeception": "^4.0",
"justinrainbow/json-schema": "~5.2.9",
"softcreatr/jsonpath": "^0.5 || ^0.7"
},
"require-dev": {
"codeception/util-universalframework": "^1.0",
"codeception/lib-innerbrowser": "^1.0"
},
"suggest": {
"aws/aws-sdk-php": "For using AWS Auth"
},
"autoload": {
"classmap": [
"src/"
]
},
"config": {
"classmap-authoritative": true
}
}
4 changes: 4 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ A REST module for Codeception
[![Total Downloads](https://poser.pugx.org/codeception/module-rest/downloads)](https://packagist.org/packages/codeception/module-rest)
[![License](https://poser.pugx.org/codeception/module-rest/license)](/LICENSE)

## Requirements

* `PHP 7.1` or higher.

## Installation

```
Expand Down
Loading