-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.37 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "open-solid/open-api-bundle",
"type": "symfony-bundle",
"description": "Provides a tight integration of OpenApi into the Symfony full-stack framework",
"keywords": ["openapi", "swagger", "symfony", "bundle"],
"license": "MIT",
"authors": [
{
"name": "Yonel Ceruto",
"email": "open@yceruto.dev"
}
],
"require": {
"php": ">=8.2",
"symfony/framework-bundle": "^7.1",
"symfony/property-access": "^7.1",
"symfony/serializer": "^7.1",
"symfony/validator": "^7.1",
"zircote/swagger-php": "^4.7",
"symfony/expression-language": "^7.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.0",
"phpunit/phpunit": "^10.0",
"psalm/plugin-phpunit": "^0.18",
"symfony/browser-kit": "^7.1",
"friendsofphp/php-cs-fixer": "^3.54"
},
"conflict": {
"zircote/swagger-php": "=4.8.7"
},
"autoload": {
"psr-4": {
"OpenSolid\\OpenApiBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenSolid\\Tests\\OpenApiBundle\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit tests",
"psalm": "vendor/bin/psalm --no-cache",
"cs": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
}
}