-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 957 Bytes
/
composer.json
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
{
"name": "chstudio/raven",
"description": "Testing your code through OpenAPI documentation easily.",
"type": "library",
"license": "Apache-2.0",
"autoload": {
"psr-4": {
"CHStudio\\Raven\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CHStudio\\RavenTest\\": "tests/unit"
}
},
"authors": [
{
"name": "Stéphane Hulard",
"email": "s.hulard@chstudio.fr"
}
],
"require": {
"php": "^8.1.0",
"league/openapi-psr7-validator": "0.*",
"devizzent/cebe-php-openapi": "^1.0",
"psr/http-message": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/log": "^1.0|^2.0|^3.0",
"fakerphp/faker": "^1.20"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.11",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^9.5"
}
}