-
Notifications
You must be signed in to change notification settings - Fork 20
/
composer.json
83 lines (83 loc) · 2.62 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
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
{
"name": "cnizzardini/cakephp-swagger-bake",
"description": "Automatically generate OpenApi, Swagger, and Redoc documentation from your existing cakephp project",
"type": "cakephp-plugin",
"license": "MIT",
"keywords": [
"cakephp swagger",
"cakephp5 swagger",
"cake swagger",
"cakephp openapi",
"cakephp5 openapi",
"cake openapi"
],
"require": {
"php": "^8.1",
"cakephp/cakephp": "^5.0",
"symfony/yaml": "^5.0",
"phpdocumentor/reflection-docblock": "^5.1",
"mixerapi/core": "^2.0"
},
"suggest": {
"cakephp/bake": "Used by SwaggerBake bake templates",
"friendsofcake/search": "Required by SwaggerBake #[OpenApiSearch]",
"mixerapi/mixerapi": "Streamline development of your API with MixerAPI"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"friendsofcake/search": "^7.0",
"cakephp/authentication": "^3.0",
"cakephp/cakephp-codesniffer": "^5.0",
"phpstan/phpstan": "^1.8.5",
"phpmd/phpmd": "^2.10",
"cakephp/bake": "^3.0",
"cakephp/debug_kit": "^5.0",
"cakephp/migrations": "^4.0"
},
"autoload": {
"psr-4": {
"SwaggerBake\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SwaggerBake\\Test\\": "tests/",
"SwaggerBakeTest\\App\\": "tests/test_app/src/",
"Demo\\": "tests/test_app/plugins/Demo/src/",
"Orgname\\Special\\": "tests/test_app/plugins/Orgname/Special/src/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"analyze": [
"@test",
"@phpcs",
"@phpstan",
"@phpmd"
],
"phpcs": "phpcs --colors -p --standard=phpcs.xml src/",
"phpcbf": "phpcbf --colors --standard=phpcs.xml src/",
"phpstan": "phpstan analyse src/",
"test": "phpunit --colors=always",
"phpmd": "phpmd src/ ansi phpmd.xml",
"coverage": "phpunit --coverage-html coverage-reports/",
"grumphp-init": "grumphp git:init",
"grumphp": "grumphp"
},
"support": {
"issues": "https://github.com/cnizzardini/cakephp-swagger-bake/issues",
"source": "https://github.com/cnizzardini/cakephp-swagger-bake"
},
"authors": [
{
"name": "Chris Nizzardini",
"homepage": "http://github.com/cnizzardini",
"role": "Developer"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}