Skip to content

Commit

Permalink
Code standards updated to PHP 7.1 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
TavoNiievez authored and gnievesj committed Nov 1, 2021
1 parent be39936 commit b454378
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 141 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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
54 changes: 28 additions & 26 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
{
"name":"codeception/module-amqp",
"description":"AMQP module for Codeception",
"keywords":["codeception", "amqp"],
"homepage":"http://codeception.com/",
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Michael Bodnarchuk"
},
{
"name":"Gintautas Miselis"
}
],
"minimum-stability": "RC",
"require": {
"php": ">=5.6.0 <9.0",
"codeception/codeception": "^4.0",
"php-amqplib/php-amqplib": "^2.10|^3.0"
},
"autoload":{
"classmap": ["src/"]
},
"config": {
"classmap-authoritative": true
}
"name": "codeception/module-amqp",
"description": "AMQP module for Codeception",
"keywords": [ "codeception", "amqp" ],
"homepage": "https://codeception.com/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Michael Bodnarchuk"
},
{
"name": "Gintautas Miselis"
}
],
"minimum-stability": "RC",
"require": {
"php": "^7.1 || ^8.0",
"codeception/codeception": "^4.0",
"php-amqplib/php-amqplib": "^2.10|^3.0"
},
"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 @@ An AMQP module for Codeception.
[![Total Downloads](https://poser.pugx.org/codeception/module-amqp/downloads)](https://packagist.org/packages/codeception/module-amqp)
[![License](https://poser.pugx.org/codeception/module-amqp/license)](/LICENSE)

## Requirements

* `PHP 7.1` or higher.

## Installation

```
Expand Down
Loading

0 comments on commit b454378

Please sign in to comment.