Skip to content

Commit bdf79c9

Browse files
authored
Update codebase to PHP 7.4 (#12)
1 parent be39936 commit bdf79c9

File tree

5 files changed

+121
-158
lines changed

5 files changed

+121
-158
lines changed

.github/workflows/main.yml

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

1515
strategy:
1616
matrix:
17-
php: [5.6, 7.0, 7.1, 7.2, 7.3, 7.4, 8.0]
17+
php: [7.4, 8.0, 8.1]
1818

1919
steps:
2020
- name: Checkout code

composer.json

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
11
{
2-
"name":"codeception/module-amqp",
3-
"description":"AMQP module for Codeception",
4-
"keywords":["codeception", "amqp"],
5-
"homepage":"http://codeception.com/",
6-
"type":"library",
7-
"license":"MIT",
8-
"authors":[
9-
{
10-
"name":"Michael Bodnarchuk"
11-
},
12-
{
13-
"name":"Gintautas Miselis"
14-
}
15-
],
16-
"minimum-stability": "RC",
17-
"require": {
18-
"php": ">=5.6.0 <9.0",
19-
"codeception/codeception": "^4.0",
20-
"php-amqplib/php-amqplib": "^2.10|^3.0"
21-
},
22-
"autoload":{
23-
"classmap": ["src/"]
24-
},
25-
"config": {
26-
"classmap-authoritative": true
27-
}
2+
"name": "codeception/module-amqp",
3+
"description": "AMQP module for Codeception",
4+
"keywords": [ "codeception", "amqp" ],
5+
"homepage": "https://codeception.com/",
6+
"type": "library",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Michael Bodnarchuk"
11+
},
12+
{
13+
"name": "Gintautas Miselis"
14+
}
15+
],
16+
"minimum-stability": "RC",
17+
"require": {
18+
"php": "^7.4 | ^8.0",
19+
"codeception/codeception": "^4.0",
20+
"php-amqplib/php-amqplib": "^2.10 | ^3.0"
21+
},
22+
"autoload": {
23+
"classmap": [
24+
"src/"
25+
]
26+
},
27+
"config": {
28+
"classmap-authoritative": true
29+
}
2830
}

readme.md

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

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

1216
```

0 commit comments

Comments
 (0)