-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.33 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 2.33 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
{
"name": "cschindl/php-openapi-mock-middleware",
"description": "PSR-15 Middleware that simulates the API responses using an OpenAPI schema.",
"license": "MIT",
"type": "library",
"keywords": [
"openapi",
"middleware",
"psr-15",
"psr-7",
"mock",
"api"
],
"authors": [
{
"name": "Carsten Schindler",
"email": "cschindl@gmx.de"
}
],
"require": {
"php": "^8.0 || ^8.1 || ^8.2",
"canvural/php-openapi-faker": "^2.1",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
"psr/http-factory": "^1.0.1",
"psr/http-message": "^1.0.1",
"psr/http-server-middleware": "^1.0.1"
},
"require-dev": {
"doctrine/coding-standard": "^9.0.2",
"ergebnis/composer-normalize": "^2.29",
"jangregor/phpstan-prophecy": "^1.0",
"nyholm/psr7": "^1.5.1",
"phpspec/prophecy": "^1.16",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9.14",
"phpstan/phpstan-phpunit": "^1.3.3",
"phpunit/phpunit": "^9.5.28",
"squizlabs/php_codesniffer": "^3.7.1"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Cschindl\\OpenApiMockMiddleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cschindl\\OpenApiMockMiddleware\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"infection/extension-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@phpcs",
"@phpstan",
"@test"
],
"phpcs": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan analyse --ansi",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-clover=.build/phpunit/clover.xml --coverage-html=.build/phpunit",
"test-fast": "vendor/bin/phpunit --color=always --testsuite Unit",
"test-fast-coverage": "vendor/bin/phpunit --testsuite Unit --coverage-clover=.build/phpunit/clover.xml --coverage-html=.build/phpunit"
}
}