-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
63 lines (63 loc) · 1.86 KB
/
composer.json
File metadata and controls
63 lines (63 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "webproject-xyz/codeception-module-openapi-server-mock",
"description": "Codeception module for PHP OpenAPI Mock Server",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Benjamin Fahl",
"email": "ben+github@webproject.xyz",
"role": "developer"
}
],
"homepage": "https://www.webproject.xyz",
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"codeception/codeception": "^5.3.5",
"symfony/process": "^6.0 || ^7.4.5 || ^8.0",
"webproject-xyz/php-openapi-mock-server": "^1.3.2"
},
"require-dev": {
"codeception/module-asserts": "^3.3.0",
"codeception/module-phpbrowser": "^4.0.0",
"codeception/module-rest": "^3.4.3",
"friendsofphp/php-cs-fixer": "^3.94.2",
"phpro/grumphp": "^2.19.0",
"phpstan/phpstan": "^2.1.40",
"webproject-xyz/codeception-module-ai-reporter": "^1.1"
},
"suggest": {
"codeception/module-phpbrowser": "^4.0.0",
"codeception/module-rest": "^3.4.3"
},
"autoload": {
"psr-4": {
"WebProject\\Codeception\\Module\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WebProject\\Codeception\\Module\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.3.0"
},
"sort-packages": true
},
"scripts": {
"cs:check": "php-cs-fixer fix --allow-risky=yes --sequential --dry-run --diff",
"cs:fix": "php-cs-fixer fix --allow-risky=yes --sequential",
"stan": "phpstan analyse --no-progress",
"test": "php -d opcache.enable_cli=1 vendor/bin/codecept run --report",
"test:build": "codecept build",
"test:coverage": "XDEBUG_MODE=coverage codecept run --coverage --coverage-xml=coverage.xml --xml --report"
}
}