-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
93 lines (93 loc) · 2.95 KB
/
composer.json
File metadata and controls
93 lines (93 loc) · 2.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "webproject-xyz/php-openapi-mock-server",
"description": "A lightweight PHP OpenAPI mock server using Mezzio and PSR-15 middleware.",
"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",
"ext-filter": "*",
"ext-random": "*",
"devizzent/cebe-php-openapi": "^1.1.5",
"fakerphp/faker": "^1.24.1",
"laminas/laminas-diactoros": "^3.8",
"league/openapi-psr7-validator": "^0.22",
"mezzio/mezzio": "^3.27",
"mezzio/mezzio-fastroute": "^3.14",
"mezzio/mezzio-problem-details": "^1.19",
"mezzio/mezzio-router": "^4.2",
"psr/cache": "^3.0",
"psr/container": "^1.1 || ^2.0",
"psr/http-factory": "^1.1",
"psr/http-message": "^2.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"symfony/cache": "^6.4 || ^7.4 || ^8.0",
"webmozart/assert": "^1.12 || ^2.0"
},
"require-dev": {
"codeception/c3": "^2.9",
"codeception/codeception": "^5.3.5",
"codeception/module-asserts": "^3.3",
"codeception/module-phpbrowser": "^4.0",
"codeception/module-rest": "^3.4.3",
"codeception/module-webdriver": "^4.0.5",
"friendsofphp/php-cs-fixer": "^3.94.2",
"maglnet/composer-require-checker": "^4.20",
"phpbench/phpbench": "^1.6.1",
"phpro/grumphp": "^2.19",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.45",
"phpstan/phpstan-webmozart-assert": "^2.0.0",
"rector/rector": "^2.3.9",
"roave/security-advisories": "dev-master",
"webproject-xyz/codeception-module-ai-reporter": "^1.1.0"
},
"autoload": {
"psr-4": {
"WebProject\\PhpOpenApiMockServer\\": "src/"
},
"exclude-from-classmap": [
"vendor/cebe/php-openapi/src/"
]
},
"autoload-dev": {
"psr-4": {
"WebProject\\PhpOpenApiMockServer\\Tests\\": "tests/"
}
},
"bin": [
"bin/openapi-mock-server"
],
"config": {
"allow-plugins": {
"codeception/c3": true,
"composer/package-versions-deprecated": true,
"phpro/grumphp": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.3.0"
},
"sort-packages": true
},
"scripts": {
"bench": "php -d opcache.enable_cli=1 vendor/bin/phpbench run tests/Benchmark --report=default",
"cs:check": "php-cs-fixer fix --allow-risky=yes --sequential --dry-run --diff",
"cs:fix": "php-cs-fixer fix --allow-risky=yes --sequential",
"rector": "rector process --dry-run",
"rector:fix": "rector process",
"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"
}
}