-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.07 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "kaz29/cakephp-open-api-theme-plugin",
"description": "OpenApiTheme plugin for CakePHP",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=8.3",
"cakephp/cakephp": "^5.0 || ^5.1",
"cakephp/bake": "^3.1",
"zircote/swagger-php": "^4.9",
"cakephp/twig-view": "^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1.0",
"cakephp/chronos": "^3.0",
"cakephp/migrations": "^4.0",
"cakephp/plugin-installer": "^2.0"
},
"autoload": {
"psr-4": {
"OpenApiTheme\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenApiTheme\\Test\\": "tests/",
"TestApp\\": "tests/test_app/src/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"bin": [
"bin/build-swagger-json"
],
"scripts": {
"build:swagger": "build-swagger-json",
"test": "phpunit"
},
"config": {
"allow-plugins": {
"cakephp/plugin-installer": true
}
}
}