Skip to content

Commit 750acd5

Browse files
committed
chore: .scrutinizer
1 parent 3fe6ddf commit 750acd5

File tree

2 files changed

+59
-54
lines changed

2 files changed

+59
-54
lines changed

.scrutinizer.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
filter:
2-
paths: [src/*]
3-
excluded_paths: [vendor/*, test/*]
2+
paths: [src/*]
3+
excluded_paths: [vendor/*, test/*]
44
before_commands:
5-
- 'composer install --dev --prefer-source'
5+
- "composer install --dev --prefer-source"
66

77
build:
88
environment:
@@ -21,12 +21,16 @@ build:
2121
php81:
2222
environment:
2323
php:
24-
version: 8.1
24+
version: 8.1
2525
php82:
2626
environment:
2727
php:
2828
version: 8.2
2929
php83:
3030
environment:
3131
php:
32-
version: 8.3.0
32+
version: 8.3
33+
php84:
34+
environment:
35+
php:
36+
version: 8.4

composer.json

Lines changed: 50 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,52 @@
11
{
2-
"keywords" : [
3-
"http",
4-
"mock",
5-
"server",
6-
"external",
7-
"acceptance",
8-
"tests",
9-
"codeception",
10-
"extension",
11-
"phiremock"
12-
],
13-
"authors" : [{
14-
"name" : "Mariano Custiel",
15-
"email" : "[email protected]",
16-
"homepage" : "https://github.com/mcustiel",
17-
"role" : "Administrator"
18-
}
19-
],
20-
"autoload" : {
21-
"psr-4" : {
22-
"Codeception\\Extension\\" : "src/Extension",
23-
"Mcustiel\\Phiremock\\Codeception\\Extension\\": "src/PhiremockExtension"
24-
}
25-
},
26-
"autoload-dev": {
27-
"psr-4" : {
28-
"Mcustiel\\Phiremock\\Codeception\\Module\\Tests\\Helpers\\": "tests/_helpers"
29-
}
30-
},
31-
"name" : "mcustiel/phiremock-codeception-extension",
32-
"type" : "project",
33-
"description" : "Codeception extension for Phiremock. Allows to stub remote services for HTTP requests.",
34-
"license" : "GPL-3.0-or-later",
35-
"require" : {
36-
"php" : "^8.0",
37-
"codeception/codeception" : "^5.0",
38-
"symfony/process": ">=5.0.0 <8.0.0"
39-
},
40-
"require-dev": {
41-
"mcustiel/phiremock-server": "^1.0",
42-
"codeception/module-rest": "^3.0",
43-
"codeception/module-phpbrowser": "^3.0",
44-
"guzzlehttp/guzzle" : "^7.0"
45-
},
46-
"suggest": {
47-
"mcustiel/phiremock-server": "As a dev-requirement. Allows the extension to start phiremock automatically from vendor/bin",
48-
"guzzlehttp/guzzle" : "Version 6 to execute phiremock-server as default"
49-
},
50-
"prefer-stable": true
2+
"keywords": [
3+
"http",
4+
"mock",
5+
"server",
6+
"external",
7+
"acceptance",
8+
"tests",
9+
"codeception",
10+
"extension",
11+
"phiremock"
12+
],
13+
"authors": [
14+
{
15+
"name": "Mariano Custiel",
16+
"email": "[email protected]",
17+
"homepage": "https://github.com/mcustiel",
18+
"role": "Administrator"
19+
}
20+
],
21+
"autoload": {
22+
"psr-4": {
23+
"Codeception\\Extension\\": "src/Extension",
24+
"Mcustiel\\Phiremock\\Codeception\\Extension\\": "src/PhiremockExtension"
25+
}
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"Mcustiel\\Phiremock\\Codeception\\Module\\Tests\\Helpers\\": "tests/_helpers"
30+
}
31+
},
32+
"name": "mcustiel/phiremock-codeception-extension",
33+
"type": "project",
34+
"description": "Codeception extension for Phiremock. Allows to stub remote services for HTTP requests.",
35+
"license": "GPL-3.0-or-later",
36+
"require": {
37+
"php": "^8.0",
38+
"codeception/codeception": "^5.0",
39+
"symfony/process": ">=5.0.0 <8.0.0"
40+
},
41+
"require-dev": {
42+
"mcustiel/phiremock-server": "^1.0",
43+
"codeception/module-rest": "^3.0",
44+
"codeception/module-phpbrowser": "^3.0",
45+
"guzzlehttp/guzzle": "^7.0"
46+
},
47+
"suggest": {
48+
"mcustiel/phiremock-server": "As a dev-requirement. Allows the extension to start phiremock automatically from vendor/bin",
49+
"guzzlehttp/guzzle": "Version 6 to execute phiremock-server as default"
50+
},
51+
"prefer-stable": true
5152
}

0 commit comments

Comments
 (0)