-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 851 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 851 Bytes
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
{
"name": "membrane/openapi-reader",
"type": "library",
"license": "MPL-2.0",
"autoload": {
"psr-4": {
"Membrane\\OpenAPIReader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Membrane\\OpenAPIReader\\Tests\\Fixtures\\Helper\\": "tests/fixtures/Helper",
"Membrane\\OpenAPIReader\\Tests\\Fixtures\\": "tests/fixtures/",
"Membrane\\OpenAPIReader\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.1.0",
"symfony/yaml": "^4 || ^5 || ^6 || ^7",
"devizzent/cebe-php-openapi": "^1.1.2"
},
"require-dev": {
"phpunit/phpunit": "^10.5.36",
"phpstan/phpstan": "^1.12.6",
"squizlabs/php_codesniffer": "^3.5.4",
"mikey179/vfsstream": "^1.6.7",
"infection/infection": "^0.29.7"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}